summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2013-12-16 21:18:07 +0000
committerJoseph Myers <joseph@codesourcery.com>2013-12-16 21:18:07 +0000
commitff362e5b93c0c52c630e27251edd84b155bc734d (patch)
tree07d054be9a6be7d4bc9f549b4f4e5728ea818e49 /math
parentd4950d651a2c055bb615b554a6745b9e5e4c7549 (diff)
Move tests of atan2, hypot and pow from libm-test.inc to auto-libm-test-in.
Diffstat (limited to 'math')
-rw-r--r--math/auto-libm-test-in353
-rw-r--r--math/auto-libm-test-out42584
-rw-r--r--math/gen-auto-libm-tests.c59
-rw-r--r--math/libm-test.inc514
4 files changed, 43000 insertions, 510 deletions
diff --git a/math/auto-libm-test-in b/math/auto-libm-test-in
index 8ec0dede1c..f46867652f 100644
--- a/math/auto-libm-test-in
+++ b/math/auto-libm-test-in
@@ -69,6 +69,38 @@ atan 0x1p-100 missing-underflow
atan 0x1p-600 missing-underflow
atan 0x1p-10000 missing-underflow
+# atan2 (0,x) == 0 for x > 0.
+atan2 0 1
+# atan2 (-0,x) == -0 for x > 0.
+atan2 -0 1
+atan2 0 0
+atan2 -0 0
+# atan2 (+0,x) == +pi for x < 0.
+atan2 0 -1
+# atan2 (-0,x) == -pi for x < 0.
+atan2 -0 -1
+atan2 0 -0
+atan2 -0 -0
+# atan2 (y,+0) == pi/2 for y > 0.
+atan2 1 0
+# atan2 (y,-0) == pi/2 for y > 0.
+atan2 1 -0
+# atan2 (y,+0) == -pi/2 for y < 0.
+atan2 -1 0
+# atan2 (y,-0) == -pi/2 for y < 0.
+atan2 -1 -0
+atan2 max max
+atan2 max min
+atan2 -max -min
+atan2 0.75 1
+atan2 -0.75 1.0
+atan2 0.75 -1.0
+atan2 -0.75 -1.0
+atan2 0.390625 .00029
+atan2 1.390625 0.9296875
+atan2 -0.00756827042671106339 -.001792735857538728036
+atan2 0x1.00000000000001p0 0x1.00000000000001p0
+
atanh 0
atanh -0
atanh 0.75
@@ -250,6 +282,35 @@ expm1 100000.0
expm1 max
expm1 -max
+# hypot (x,y) == hypot (+-x, +-y).
+hypot 0.7 12.4
+hypot -0.7 12.4
+hypot 0.7 -12.4
+hypot -0.7 -12.4
+hypot 12.4 0.7
+hypot -12.4 0.7
+hypot 12.4 -0.7
+hypot -12.4 -0.7
+# hypot (x,0) == fabs (x).
+hypot 0.75 0
+hypot -0.75 0
+hypot -5.7e7 0
+hypot 0.75 1.25
+hypot 1.0 0x1p-61
+hypot 0x1p+0 0x1.fp-129
+# Bug 16314: spurious underflow exception may occur.
+hypot 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef0123456789ab8p-500 spurious-underflow:dbl-64
+hypot 0x3p125 0x4p125 no-test-inline:flt-32
+hypot 0x1.234566p-126 0x1.234566p-126 no-test-inline:flt-32
+hypot 0x3p1021 0x4p1021 no-test-inline:dbl-64
+hypot 0x1p+0 0x0.3ep-1022 no-test-inline:dbl-64
+hypot 0x3p16381 0x4p16381 no-test-inline
+hypot 0x1p-149 0x1p-149
+hypot 0x1p-1074 0x1p-1074
+# Bug 16316: hypot broken for some subnormal arguments.
+hypot 0x1p-16445 0x1p-16445 no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k
+hypot 0x1p-16494 0x1p-16494 no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k
+
j0 -1.0
j0 0.0
j0 0.125
@@ -366,6 +427,298 @@ log2 16.0
log2 256.0
log2 0.75
+pow 0 0
+pow 0 -0
+pow -0 0
+pow -0 -0
+
+pow 10 0
+pow 10 -0
+pow -10 0
+pow -10 -0
+
+pow 1 1
+pow 1 -1
+pow 1 1.25
+pow 1 -1.25
+pow 1 0x1p62
+pow 1 0x1p63
+pow 1 0x1p64
+pow 1 0x1p72
+pow 1 min_subnorm
+pow 1 -min_subnorm
+
+# pow (x, +-0) == 1.
+pow 32.75 0
+pow 32.75 -0
+pow -32.75 0
+pow -32.75 -0
+pow 0x1p72 0
+pow 0x1p72 -0
+pow 0x1p-72 0
+pow 0x1p-72 -0
+
+pow 0x1p72 0x1p72
+pow 10 -0x1p72
+pow max max
+pow 10 -max
+
+pow 0 1
+pow 0 11
+
+pow -0 1
+pow -0 11
+
+pow 0 2
+pow 0 11.1
+
+pow -0 2
+pow -0 11.1
+
+# pow (+0, y) == +0 for y an odd integer > 0.
+pow 0.0 27
+pow 0.0 0xffffff
+pow 0.0 0x1.fffffffffffffp+52
+pow 0.0 0x1.fffffffffffffffep+63
+pow 0.0 0x1.ffffffffffffffffffffffffff8p+105
+pow 0.0 0x1.ffffffffffffffffffffffffffffp+112
+
+# pow (-0, y) == -0 for y an odd integer > 0.
+pow -0 27
+pow -0 0xffffff
+pow -0 0x1fffffe
+pow -0 0x1.fffffffffffffp+52
+pow -0 0x1.fffffffffffffp+53
+pow -0 0x1.fffffffffffffffep+63
+pow -0 0x1.fffffffffffffffep+64
+pow -0 0x1.ffffffffffffffffffffffffff8p+105
+pow -0 0x1.ffffffffffffffffffffffffff8p+106
+pow -0 0x1.ffffffffffffffffffffffffffffp+112
+pow -0 0x1.ffffffffffffffffffffffffffffp+113
+
+# pow (+0, y) == +0 for y > 0 and not an odd integer.
+pow 0.0 4
+pow 0.0 0x1p24
+pow 0.0 0x1p127
+pow 0.0 max
+pow 0.0 min_subnorm
+
+# pow (-0, y) == +0 for y > 0 and not an odd integer.
+pow -0 4
+pow -0 0x1p24
+pow -0 0x1p127
+pow -0 max
+pow -0 min_subnorm
+
+pow 16 0.25
+pow 0x1p64 0.125
+pow 2 4
+pow 256 8
+
+pow 0.75 1.25
+
+pow -7.49321e+133 -9.80818e+16
+
+pow -1.0 -0xffffff
+pow -1.0 -0x1fffffe
+pow -1.0 -0x1.fffffffffffffp+52
+pow -1.0 -0x1.fffffffffffffp+53
+pow -1.0 -0x1.fffffffffffffffep+63
+pow -1.0 -0x1.fffffffffffffffep+64
+pow -1.0 -0x1.ffffffffffffffffffffffffff8p+105
+pow -1.0 -0x1.ffffffffffffffffffffffffff8p+106
+pow -1.0 -0x1.ffffffffffffffffffffffffffffp+112
+pow -1.0 -0x1.ffffffffffffffffffffffffffffp+113
+pow -1.0 -max
+
+pow -1.0 0xffffff
+pow -1.0 0x1fffffe
+pow -1.0 0x1.fffffffffffffp+52
+pow -1.0 0x1.fffffffffffffp+53
+pow -1.0 0x1.fffffffffffffffep+63
+pow -1.0 0x1.fffffffffffffffep+64
+pow -1.0 0x1.ffffffffffffffffffffffffff8p+105
+pow -1.0 0x1.ffffffffffffffffffffffffff8p+106
+pow -1.0 0x1.ffffffffffffffffffffffffffffp+112
+pow -1.0 0x1.ffffffffffffffffffffffffffffp+113
+pow -1.0 max
+
+pow -2.0 126
+pow -2.0 127
+pow -2.0 -126
+pow -2.0 -127
+
+pow -2.0 -0xffffff
+pow -2.0 -0x1fffffe
+pow -2.0 -0x1.fffffffffffffp+52
+pow -2.0 -0x1.fffffffffffffp+53
+pow -2.0 -0x1.fffffffffffffffep+63
+pow -2.0 -0x1.fffffffffffffffep+64
+pow -2.0 -0x1.ffffffffffffffffffffffffff8p+105
+pow -2.0 -0x1.ffffffffffffffffffffffffff8p+106
+pow -2.0 -0x1.ffffffffffffffffffffffffffffp+112
+pow -2.0 -0x1.ffffffffffffffffffffffffffffp+113
+pow -2.0 -max
+
+pow -2.0 0xffffff
+pow -2.0 0x1fffffe
+pow -2.0 0x1.fffffffffffffp+52
+pow -2.0 0x1.fffffffffffffp+53
+pow -2.0 0x1.fffffffffffffffep+63
+pow -2.0 0x1.fffffffffffffffep+64
+pow -2.0 0x1.ffffffffffffffffffffffffff8p+105
+pow -2.0 0x1.ffffffffffffffffffffffffff8p+106
+pow -2.0 0x1.ffffffffffffffffffffffffffffp+112
+pow -2.0 0x1.ffffffffffffffffffffffffffffp+113
+pow -2.0 max
+
+pow -max -2
+pow -max -3
+pow -max 2
+pow -max 3
+
+pow -max -0xffffff
+pow -max -0x1fffffe
+pow -max -0x1.fffffffffffffp+52
+pow -max -0x1.fffffffffffffp+53
+pow -max -0x1.fffffffffffffffep+63
+pow -max -0x1.fffffffffffffffep+64
+pow -max -0x1.ffffffffffffffffffffffffff8p+105
+pow -max -0x1.ffffffffffffffffffffffffff8p+106
+pow -max -0x1.ffffffffffffffffffffffffffffp+112
+pow -max -0x1.ffffffffffffffffffffffffffffp+113
+pow -max -max
+
+pow -max 0xffffff
+pow -max 0x1fffffe
+pow -max 0x1.fffffffffffffp+52
+pow -max 0x1.fffffffffffffp+53
+pow -max 0x1.fffffffffffffffep+63
+pow -max 0x1.fffffffffffffffep+64
+pow -max 0x1.ffffffffffffffffffffffffff8p+105
+pow -max 0x1.ffffffffffffffffffffffffff8p+106
+pow -max 0x1.ffffffffffffffffffffffffffffp+112
+pow -max 0x1.ffffffffffffffffffffffffffffp+113
+pow -max max
+
+pow -0.5 126
+pow -0.5 127
+pow -0.5 -126
+pow -0.5 -127
+
+pow -0.5 -0xffffff
+pow -0.5 -0x1fffffe
+pow -0.5 -0x1.fffffffffffffp+52
+pow -0.5 -0x1.fffffffffffffp+53
+pow -0.5 -0x1.fffffffffffffffep+63
+pow -0.5 -0x1.fffffffffffffffep+64
+pow -0.5 -0x1.ffffffffffffffffffffffffff8p+105
+pow -0.5 -0x1.ffffffffffffffffffffffffff8p+106
+pow -0.5 -0x1.ffffffffffffffffffffffffffffp+112
+pow -0.5 -0x1.ffffffffffffffffffffffffffffp+113
+pow -0.5 -max
+
+pow -0.5 0xffffff
+pow -0.5 0x1fffffe
+pow -0.5 0x1.fffffffffffffp+52
+pow -0.5 0x1.fffffffffffffp+53
+pow -0.5 0x1.fffffffffffffffep+63
+pow -0.5 0x1.fffffffffffffffep+64
+pow -0.5 0x1.ffffffffffffffffffffffffff8p+105
+pow -0.5 0x1.ffffffffffffffffffffffffff8p+106
+pow -0.5 0x1.ffffffffffffffffffffffffffffp+112
+pow -0.5 0x1.ffffffffffffffffffffffffffffp+113
+pow -0.5 max
+
+pow -min -2
+pow -min -3
+pow -min 1
+pow -min 2
+pow -min 3
+
+pow -min -0xffffff
+pow -min -0x1fffffe
+pow -min -0x1.fffffffffffffp+52
+pow -min -0x1.fffffffffffffp+53
+pow -min -0x1.fffffffffffffffep+63
+pow -min -0x1.fffffffffffffffep+64
+pow -min -0x1.ffffffffffffffffffffffffff8p+105
+pow -min -0x1.ffffffffffffffffffffffffff8p+106
+pow -min -0x1.ffffffffffffffffffffffffffffp+112
+pow -min -0x1.ffffffffffffffffffffffffffffp+113
+pow -min -max
+
+pow -min 0xffffff
+pow -min 0x1fffffe
+pow -min 0x1.fffffffffffffp+52
+pow -min 0x1.fffffffffffffp+53
+pow -min 0x1.fffffffffffffffep+63
+pow -min 0x1.fffffffffffffffep+64
+pow -min 0x1.ffffffffffffffffffffffffff8p+105
+pow -min 0x1.ffffffffffffffffffffffffff8p+106
+pow -min 0x1.ffffffffffffffffffffffffffffp+112
+pow -min 0x1.ffffffffffffffffffffffffffffp+113
+pow -min max
+
+pow 0x0.ffffffp0 10
+pow 0x0.ffffffp0 100
+pow 0x0.ffffffp0 1000
+pow 0x0.ffffffp0 0x1p24
+pow 0x0.ffffffp0 0x1p30
+pow 0x0.ffffffp0 0x1.234566p30
+pow 0x0.ffffffp0 -10
+pow 0x0.ffffffp0 -100
+pow 0x0.ffffffp0 -1000
+pow 0x0.ffffffp0 -0x1p24
+pow 0x0.ffffffp0 -0x1p30
+pow 0x0.ffffffp0 -0x1.234566p30
+pow 0x1.000002p0 0x1p24
+pow 0x1.000002p0 0x1.234566p29
+pow 0x1.000002p0 -0x1.234566p29
+
+pow 0x0.fffffffffffff8p0 0x1.23456789abcdfp62
+pow 0x0.fffffffffffff8p0 -0x1.23456789abcdfp62
+pow 0x1.0000000000001p0 0x1.23456789abcdfp61
+pow 0x1.0000000000001p0 -0x1.23456789abcdfp61
+
+pow 0x0.ffffffffffffffffp0 0x1.23456789abcdef0ep77
+pow 0x0.ffffffffffffffffp0 -0x1.23456789abcdef0ep77
+pow 0x1.0000000000000002p0 0x1.23456789abcdef0ep76
+pow 0x1.0000000000000002p0 -0x1.23456789abcdef0ep76
+
+pow 0x0.ffffffffffffffffffffffffffff8p0 0x1.23456789abcdef0123456789abcdp126
+pow 0x0.ffffffffffffffffffffffffffff8p0 -0x1.23456789abcdef0123456789abcdp126
+pow 0x1.0000000000000000000000000001p0 0x1.23456789abcdef0123456789abcdp125
+pow 0x1.0000000000000000000000000001p0 -0x1.23456789abcdef0123456789abcdp125
+
+pow 1e4932 0.75
+pow 1e4928 0.75
+pow 1e4924 0.75
+pow 1e4920 0.75
+pow 10.0 4932.0
+pow 10.0 4931.0
+pow 10.0 4930.0
+pow 10.0 4929.0
+pow 10.0 -4931.0
+pow 10.0 -4930.0
+pow 10.0 -4929.0
+pow 1e27 182.0
+pow 1e27 -182.0
+
+pow min_subnorm min_subnorm
+pow min_subnorm -min_subnorm
+pow max min_subnorm
+pow max -min_subnorm
+pow 0.99 min_subnorm
+pow 0.99 -min_subnorm
+pow 1.01 min_subnorm
+pow 1.01 -min_subnorm
+
+pow 2.0 -100000.0
+
+pow 1.0625 1.125
+pow 1.5 1.03125
+
sin 0
sin -0
sin pi/6
diff --git a/math/auto-libm-test-out b/math/auto-libm-test-out
index 19a9e0efaa..0ae37ce704 100644
--- a/math/auto-libm-test-out
+++ b/math/auto-libm-test-out
@@ -2073,6 +2073,2709 @@ atan 0x1p-10000 missing-underflow
= atan tonearest ldbl-128 0x1p-10000L : 0x1p-10000L : inexact-ok
= atan towardzero ldbl-128 0x1p-10000L : 0xf.fffffffffffffffffffffffffff8p-10004L : inexact-ok
= atan upward ldbl-128 0x1p-10000L : 0x1p-10000L : inexact-ok
+atan2 0 1
+= atan2 downward flt-32 0x0p+0f 0x1p+0f : 0x0p+0f : inexact-ok
+= atan2 tonearest flt-32 0x0p+0f 0x1p+0f : 0x0p+0f : inexact-ok
+= atan2 towardzero flt-32 0x0p+0f 0x1p+0f : 0x0p+0f : inexact-ok
+= atan2 upward flt-32 0x0p+0f 0x1p+0f : 0x0p+0f : inexact-ok
+= atan2 downward dbl-64 0x0p+0 0x1p+0 : 0x0p+0 : inexact-ok
+= atan2 tonearest dbl-64 0x0p+0 0x1p+0 : 0x0p+0 : inexact-ok
+= atan2 towardzero dbl-64 0x0p+0 0x1p+0 : 0x0p+0 : inexact-ok
+= atan2 upward dbl-64 0x0p+0 0x1p+0 : 0x0p+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= atan2 downward ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= atan2 upward ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+atan2 -0 1
+= atan2 downward flt-32 -0x0p+0f 0x1p+0f : -0x0p+0f : inexact-ok
+= atan2 tonearest flt-32 -0x0p+0f 0x1p+0f : -0x0p+0f : inexact-ok
+= atan2 towardzero flt-32 -0x0p+0f 0x1p+0f : -0x0p+0f : inexact-ok
+= atan2 upward flt-32 -0x0p+0f 0x1p+0f : -0x0p+0f : inexact-ok
+= atan2 downward dbl-64 -0x0p+0 0x1p+0 : -0x0p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x0p+0 0x1p+0 : -0x0p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x0p+0 0x1p+0 : -0x0p+0 : inexact-ok
+= atan2 upward dbl-64 -0x0p+0 0x1p+0 : -0x0p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+atan2 0 0
+= atan2 downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : inexact-ok
+= atan2 tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : inexact-ok
+= atan2 towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : inexact-ok
+= atan2 upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : inexact-ok
+= atan2 downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= atan2 tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= atan2 towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= atan2 upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= atan2 downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= atan2 upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+atan2 -0 0
+= atan2 downward flt-32 -0x0p+0f 0x0p+0f : -0x0p+0f : inexact-ok
+= atan2 tonearest flt-32 -0x0p+0f 0x0p+0f : -0x0p+0f : inexact-ok
+= atan2 towardzero flt-32 -0x0p+0f 0x0p+0f : -0x0p+0f : inexact-ok
+= atan2 upward flt-32 -0x0p+0f 0x0p+0f : -0x0p+0f : inexact-ok
+= atan2 downward dbl-64 -0x0p+0 0x0p+0 : -0x0p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x0p+0 0x0p+0 : -0x0p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x0p+0 0x0p+0 : -0x0p+0 : inexact-ok
+= atan2 upward dbl-64 -0x0p+0 0x0p+0 : -0x0p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x0p+0L 0x0p+0L : -0x0p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x0p+0L 0x0p+0L : -0x0p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x0p+0L 0x0p+0L : -0x0p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x0p+0L 0x0p+0L : -0x0p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x0p+0L 0x0p+0L : -0x0p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x0p+0L 0x0p+0L : -0x0p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x0p+0L 0x0p+0L : -0x0p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x0p+0L 0x0p+0L : -0x0p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x0p+0L 0x0p+0L : -0x0p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x0p+0L 0x0p+0L : -0x0p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x0p+0L 0x0p+0L : -0x0p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x0p+0L 0x0p+0L : -0x0p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x0p+0L 0x0p+0L : -0x0p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x0p+0L 0x0p+0L : -0x0p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x0p+0L 0x0p+0L : -0x0p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x0p+0L 0x0p+0L : -0x0p+0L : inexact-ok
+atan2 0 -1
+= atan2 downward flt-32 0x0p+0f -0x1p+0f : 0x3.243f68p+0f : inexact-ok
+= atan2 tonearest flt-32 0x0p+0f -0x1p+0f : 0x3.243f6cp+0f : inexact-ok
+= atan2 towardzero flt-32 0x0p+0f -0x1p+0f : 0x3.243f68p+0f : inexact-ok
+= atan2 upward flt-32 0x0p+0f -0x1p+0f : 0x3.243f6cp+0f : inexact-ok
+= atan2 downward dbl-64 0x0p+0 -0x1p+0 : 0x3.243f6a8885a3p+0 : inexact-ok
+= atan2 tonearest dbl-64 0x0p+0 -0x1p+0 : 0x3.243f6a8885a3p+0 : inexact-ok
+= atan2 towardzero dbl-64 0x0p+0 -0x1p+0 : 0x3.243f6a8885a3p+0 : inexact-ok
+= atan2 upward dbl-64 0x0p+0 -0x1p+0 : 0x3.243f6a8885a32p+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0x0p+0L -0x1p+0L : 0x3.243f6a8885a308dp+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x0p+0L -0x1p+0L : 0x3.243f6a8885a308d4p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x0p+0L -0x1p+0L : 0x3.243f6a8885a308dp+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0x0p+0L -0x1p+0L : 0x3.243f6a8885a308d4p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x0p+0L -0x1p+0L : 0x3.243f6a8885a308dp+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x0p+0L -0x1p+0L : 0x3.243f6a8885a308d4p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x0p+0L -0x1p+0L : 0x3.243f6a8885a308dp+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x0p+0L -0x1p+0L : 0x3.243f6a8885a308d4p+0L : inexact-ok
+= atan2 downward ldbl-128 0x0p+0L -0x1p+0L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0x0p+0L -0x1p+0L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0x0p+0L -0x1p+0L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok
+= atan2 upward ldbl-128 0x0p+0L -0x1p+0L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0x0p+0L -0x1p+0L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x0p+0L -0x1p+0L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x0p+0L -0x1p+0L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0x0p+0L -0x1p+0L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok
+atan2 -0 -1
+= atan2 downward flt-32 -0x0p+0f -0x1p+0f : -0x3.243f6cp+0f : inexact-ok
+= atan2 tonearest flt-32 -0x0p+0f -0x1p+0f : -0x3.243f6cp+0f : inexact-ok
+= atan2 towardzero flt-32 -0x0p+0f -0x1p+0f : -0x3.243f68p+0f : inexact-ok
+= atan2 upward flt-32 -0x0p+0f -0x1p+0f : -0x3.243f68p+0f : inexact-ok
+= atan2 downward dbl-64 -0x0p+0 -0x1p+0 : -0x3.243f6a8885a32p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x0p+0 -0x1p+0 : -0x3.243f6a8885a3p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x0p+0 -0x1p+0 : -0x3.243f6a8885a3p+0 : inexact-ok
+= atan2 upward dbl-64 -0x0p+0 -0x1p+0 : -0x3.243f6a8885a3p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x0p+0L -0x1p+0L : -0x3.243f6a8885a308d4p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x0p+0L -0x1p+0L : -0x3.243f6a8885a308d4p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x0p+0L -0x1p+0L : -0x3.243f6a8885a308dp+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x0p+0L -0x1p+0L : -0x3.243f6a8885a308dp+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x0p+0L -0x1p+0L : -0x3.243f6a8885a308d4p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x0p+0L -0x1p+0L : -0x3.243f6a8885a308d4p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x0p+0L -0x1p+0L : -0x3.243f6a8885a308dp+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x0p+0L -0x1p+0L : -0x3.243f6a8885a308dp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x0p+0L -0x1p+0L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x0p+0L -0x1p+0L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x0p+0L -0x1p+0L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok
+= atan2 upward ldbl-128 -0x0p+0L -0x1p+0L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x0p+0L -0x1p+0L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x0p+0L -0x1p+0L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x0p+0L -0x1p+0L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x0p+0L -0x1p+0L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok
+atan2 0 -0
+= atan2 downward flt-32 0x0p+0f -0x0p+0f : 0x3.243f68p+0f : inexact-ok
+= atan2 tonearest flt-32 0x0p+0f -0x0p+0f : 0x3.243f6cp+0f : inexact-ok
+= atan2 towardzero flt-32 0x0p+0f -0x0p+0f : 0x3.243f68p+0f : inexact-ok
+= atan2 upward flt-32 0x0p+0f -0x0p+0f : 0x3.243f6cp+0f : inexact-ok
+= atan2 downward dbl-64 0x0p+0 -0x0p+0 : 0x3.243f6a8885a3p+0 : inexact-ok
+= atan2 tonearest dbl-64 0x0p+0 -0x0p+0 : 0x3.243f6a8885a3p+0 : inexact-ok
+= atan2 towardzero dbl-64 0x0p+0 -0x0p+0 : 0x3.243f6a8885a3p+0 : inexact-ok
+= atan2 upward dbl-64 0x0p+0 -0x0p+0 : 0x3.243f6a8885a32p+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0x0p+0L -0x0p+0L : 0x3.243f6a8885a308dp+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x0p+0L -0x0p+0L : 0x3.243f6a8885a308d4p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x0p+0L -0x0p+0L : 0x3.243f6a8885a308dp+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0x0p+0L -0x0p+0L : 0x3.243f6a8885a308d4p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x3.243f6a8885a308dp+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x3.243f6a8885a308d4p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x3.243f6a8885a308dp+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x3.243f6a8885a308d4p+0L : inexact-ok
+= atan2 downward ldbl-128 0x0p+0L -0x0p+0L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0x0p+0L -0x0p+0L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0x0p+0L -0x0p+0L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok
+= atan2 upward ldbl-128 0x0p+0L -0x0p+0L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0x0p+0L -0x0p+0L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x0p+0L -0x0p+0L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x0p+0L -0x0p+0L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0x0p+0L -0x0p+0L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok
+atan2 -0 -0
+= atan2 downward flt-32 -0x0p+0f -0x0p+0f : -0x3.243f6cp+0f : inexact-ok
+= atan2 tonearest flt-32 -0x0p+0f -0x0p+0f : -0x3.243f6cp+0f : inexact-ok
+= atan2 towardzero flt-32 -0x0p+0f -0x0p+0f : -0x3.243f68p+0f : inexact-ok
+= atan2 upward flt-32 -0x0p+0f -0x0p+0f : -0x3.243f68p+0f : inexact-ok
+= atan2 downward dbl-64 -0x0p+0 -0x0p+0 : -0x3.243f6a8885a32p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x0p+0 -0x0p+0 : -0x3.243f6a8885a3p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x0p+0 -0x0p+0 : -0x3.243f6a8885a3p+0 : inexact-ok
+= atan2 upward dbl-64 -0x0p+0 -0x0p+0 : -0x3.243f6a8885a3p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x0p+0L -0x0p+0L : -0x3.243f6a8885a308d4p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x0p+0L -0x0p+0L : -0x3.243f6a8885a308d4p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x0p+0L -0x0p+0L : -0x3.243f6a8885a308dp+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x0p+0L -0x0p+0L : -0x3.243f6a8885a308dp+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x0p+0L -0x0p+0L : -0x3.243f6a8885a308d4p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x0p+0L -0x0p+0L : -0x3.243f6a8885a308d4p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x0p+0L -0x0p+0L : -0x3.243f6a8885a308dp+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x0p+0L -0x0p+0L : -0x3.243f6a8885a308dp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x0p+0L -0x0p+0L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x0p+0L -0x0p+0L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x0p+0L -0x0p+0L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok
+= atan2 upward ldbl-128 -0x0p+0L -0x0p+0L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x0p+0L -0x0p+0L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x0p+0L -0x0p+0L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x0p+0L -0x0p+0L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x0p+0L -0x0p+0L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok
+atan2 1 0
+= atan2 downward flt-32 0x1p+0f 0x0p+0f : 0x1.921fb4p+0f : inexact-ok
+= atan2 tonearest flt-32 0x1p+0f 0x0p+0f : 0x1.921fb6p+0f : inexact-ok
+= atan2 towardzero flt-32 0x1p+0f 0x0p+0f : 0x1.921fb4p+0f : inexact-ok
+= atan2 upward flt-32 0x1p+0f 0x0p+0f : 0x1.921fb6p+0f : inexact-ok
+= atan2 downward dbl-64 0x1p+0 0x0p+0 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 tonearest dbl-64 0x1p+0 0x0p+0 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 towardzero dbl-64 0x1p+0 0x0p+0 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 upward dbl-64 0x1p+0 0x0p+0 : 0x1.921fb54442d19p+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0x1p+0L 0x0p+0L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1p+0L 0x0p+0L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1p+0L 0x0p+0L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1p+0L 0x0p+0L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0x1p+0L 0x0p+0L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0x1p+0L 0x0p+0L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0x1p+0L 0x0p+0L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0x1p+0L 0x0p+0L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1p+0L 0x0p+0L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1p+0L 0x0p+0L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1p+0L 0x0p+0L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1p+0L 0x0p+0L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+atan2 1 -0
+= atan2 downward flt-32 0x1p+0f -0x0p+0f : 0x1.921fb4p+0f : inexact-ok
+= atan2 tonearest flt-32 0x1p+0f -0x0p+0f : 0x1.921fb6p+0f : inexact-ok
+= atan2 towardzero flt-32 0x1p+0f -0x0p+0f : 0x1.921fb4p+0f : inexact-ok
+= atan2 upward flt-32 0x1p+0f -0x0p+0f : 0x1.921fb6p+0f : inexact-ok
+= atan2 downward dbl-64 0x1p+0 -0x0p+0 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 tonearest dbl-64 0x1p+0 -0x0p+0 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 towardzero dbl-64 0x1p+0 -0x0p+0 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 upward dbl-64 0x1p+0 -0x0p+0 : 0x1.921fb54442d19p+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0x1p+0L -0x0p+0L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1p+0L -0x0p+0L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1p+0L -0x0p+0L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1p+0L -0x0p+0L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1p+0L -0x0p+0L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1p+0L -0x0p+0L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1p+0L -0x0p+0L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1p+0L -0x0p+0L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0x1p+0L -0x0p+0L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0x1p+0L -0x0p+0L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0x1p+0L -0x0p+0L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0x1p+0L -0x0p+0L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1p+0L -0x0p+0L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1p+0L -0x0p+0L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1p+0L -0x0p+0L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1p+0L -0x0p+0L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+atan2 -1 0
+= atan2 downward flt-32 -0x1p+0f 0x0p+0f : -0x1.921fb6p+0f : inexact-ok
+= atan2 tonearest flt-32 -0x1p+0f 0x0p+0f : -0x1.921fb6p+0f : inexact-ok
+= atan2 towardzero flt-32 -0x1p+0f 0x0p+0f : -0x1.921fb4p+0f : inexact-ok
+= atan2 upward flt-32 -0x1p+0f 0x0p+0f : -0x1.921fb4p+0f : inexact-ok
+= atan2 downward dbl-64 -0x1p+0 0x0p+0 : -0x1.921fb54442d19p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1p+0 0x0p+0 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1p+0 0x0p+0 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 upward dbl-64 -0x1p+0 0x0p+0 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1p+0L 0x0p+0L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1p+0L 0x0p+0L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1p+0L 0x0p+0L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1p+0L 0x0p+0L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1p+0L 0x0p+0L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1p+0L 0x0p+0L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1p+0L 0x0p+0L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1p+0L 0x0p+0L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1p+0L 0x0p+0L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1p+0L 0x0p+0L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1p+0L 0x0p+0L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1p+0L 0x0p+0L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1p+0L 0x0p+0L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1p+0L 0x0p+0L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1p+0L 0x0p+0L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1p+0L 0x0p+0L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+atan2 -1 -0
+= atan2 downward flt-32 -0x1p+0f -0x0p+0f : -0x1.921fb6p+0f : inexact-ok
+= atan2 tonearest flt-32 -0x1p+0f -0x0p+0f : -0x1.921fb6p+0f : inexact-ok
+= atan2 towardzero flt-32 -0x1p+0f -0x0p+0f : -0x1.921fb4p+0f : inexact-ok
+= atan2 upward flt-32 -0x1p+0f -0x0p+0f : -0x1.921fb4p+0f : inexact-ok
+= atan2 downward dbl-64 -0x1p+0 -0x0p+0 : -0x1.921fb54442d19p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1p+0 -0x0p+0 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1p+0 -0x0p+0 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 upward dbl-64 -0x1p+0 -0x0p+0 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1p+0L -0x0p+0L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1p+0L -0x0p+0L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1p+0L -0x0p+0L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1p+0L -0x0p+0L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1p+0L -0x0p+0L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1p+0L -0x0p+0L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1p+0L -0x0p+0L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1p+0L -0x0p+0L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1p+0L -0x0p+0L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1p+0L -0x0p+0L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1p+0L -0x0p+0L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1p+0L -0x0p+0L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1p+0L -0x0p+0L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1p+0L -0x0p+0L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1p+0L -0x0p+0L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1p+0L -0x0p+0L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+atan2 max max
+= atan2 downward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0xc.90fdap-4f : inexact-ok
+= atan2 tonearest flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0xc.90fdbp-4f : inexact-ok
+= atan2 towardzero flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0xc.90fdap-4f : inexact-ok
+= atan2 upward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0xc.90fdbp-4f : inexact-ok
+= atan2 downward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0xc.90fdaa22168cp-4 : inexact-ok
+= atan2 tonearest dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0xc.90fdaa22168cp-4 : inexact-ok
+= atan2 towardzero dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0xc.90fdaa22168cp-4 : inexact-ok
+= atan2 upward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0xc.90fdaa22168c8p-4 : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok
+= atan2 downward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.fffffp-900 : inexact-ok
+= atan2 tonearest dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.fffff00000008p-900 : inexact-ok
+= atan2 towardzero dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.fffffp-900 : inexact-ok
+= atan2 upward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.fffff00000008p-900 : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffff00000007ffp-900L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffff00000008p-900L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffff00000007ffp-900L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffff00000008p-900L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffff00000007ffp-900L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffff00000008p-900L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffff00000007ffp-900L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffff00000008p-900L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffff00000007fffff80000003f8p-900L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffff00000007fffff80000004p-900L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffff00000007fffff80000003f8p-900L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffff00000007fffff80000004p-900L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffff00000007fffff8p-900L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffff00000007fffff80000004p-900L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffff00000007fffff8p-900L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffff00000007fffff80000004p-900L : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffffp-16260L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffff0000000001p-16260L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffffp-16260L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffff0000000001p-16260L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffffp-16260L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffff0000000001p-16260L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffffp-16260L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffff0000000001p-16260L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffff0000000000ffffffp-16260L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffff0000000000ffffffp-16260L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffff0000000000ffffffp-16260L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffff0000000000ffffff0000008p-16260L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffp+124L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffp-16260L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffff00000000000000000000008p-16260L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffp-16260L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffp+124L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffff00000000000000000000008p-16260L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffff00000003fffffc0000004f8p-900L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffff00000003fffffc0000005p-900L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffff00000003fffffc0000004f8p-900L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffff00000003fffffc0000005p-900L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffff00000003fffffc0000004p-900L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffff00000003fffffc0000004p-900L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffff00000003fffffc0000004p-900L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffff00000003fffffc0000008p-900L : inexact-ok
+= atan2 downward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 upward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x1.921fb54442d19p+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 downward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xc.90fdaa22168cp-4 : inexact-ok
+= atan2 tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xc.90fdaa22168cp-4 : inexact-ok
+= atan2 towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xc.90fdaa22168cp-4 : inexact-ok
+= atan2 upward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xc.90fdaa22168c8p-4 : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.ffffffffffff8p-15364L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.ffffffffffff801p-15364L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.ffffffffffff8p-15364L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.ffffffffffff801p-15364L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.ffffffffffff8p-15364L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.ffffffffffff801p-15364L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.ffffffffffff8p-15364L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.ffffffffffff801p-15364L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.ffffffffffff800ffffffffffff8p-15364L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.ffffffffffff801p-15364L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.ffffffffffff800ffffffffffff8p-15364L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.ffffffffffff801p-15364L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.ffffffffffff8p-15364L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.ffffffffffff8000000000000008p-15364L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.ffffffffffff8p-15364L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.ffffffffffff8000000000000008p-15364L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c034c4c6628b80fp-4L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c034c4c6628b80fp-4L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c034c4c6628b80fp-4L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c034c4c6628b80f08p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c034c4c6628b80cp-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c034c4c6628b81p-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c034c4c6628b80cp-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c034c4c6628b81p-4L : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xc.90fdaa22168c23444c6628b80dcp-4L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xc.90fdaa22168c23444c6628b80dc8p-4L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xc.90fdaa22168c23444c6628b80dcp-4L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xc.90fdaa22168c23444c6628b80dc8p-4L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+16380L : 0xc.90fdaa22168c23544c6628b80db8p-4L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+16380L : 0xc.90fdaa22168c23544c6628b80dcp-4L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+16380L : 0xc.90fdaa22168c23544c6628b80db8p-4L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+16380L : 0xc.90fdaa22168c23544c6628b80dcp-4L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c434c4c6628b80c8p-4L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c434c4c6628b80c8p-4L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c434c4c6628b80c8p-4L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c434c4c6628b80c88p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c434c4c6628b80cp-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c434c4c6628b80cp-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c434c4c6628b80cp-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xc.90fdaa22168c434c4c6628b81p-4L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+16380L : 0xf.ffffffffffffc00ffffffffffbf8p-15364L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+16380L : 0xf.ffffffffffffc00ffffffffffcp-15364L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+16380L : 0xf.ffffffffffffc00ffffffffffbf8p-15364L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+16380L : 0xf.ffffffffffffc00ffffffffffcp-15364L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.ffffffffffffbffffffffffffcp-15364L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.ffffffffffffbffffffffffffc08p-15364L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.ffffffffffffbffffffffffffcp-15364L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.ffffffffffffbffffffffffffc08p-15364L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok
+atan2 max min
+= atan2 downward flt-32 0xf.fffffp+124f 0x4p-128f : 0x1.921fb4p+0f : inexact-ok
+= atan2 tonearest flt-32 0xf.fffffp+124f 0x4p-128f : 0x1.921fb6p+0f : inexact-ok
+= atan2 towardzero flt-32 0xf.fffffp+124f 0x4p-128f : 0x1.921fb4p+0f : inexact-ok
+= atan2 upward flt-32 0xf.fffffp+124f 0x4p-128f : 0x1.921fb6p+0f : inexact-ok
+= atan2 downward dbl-64 0xf.fffffp+124 0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 tonearest dbl-64 0xf.fffffp+124 0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 towardzero dbl-64 0xf.fffffp+124 0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 upward dbl-64 0xf.fffffp+124 0x4p-128 : 0x1.921fb54442d19p+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.fffffp+124L 0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.fffffp+124L 0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.fffffp+124L 0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.fffffp+124L 0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.fffffp+124L 0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L 0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L 0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.fffffp+124L 0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffp+124L 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffp+124L 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffp+124L 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffp+124L 0x4p-128L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.fffffp+124L 0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.fffffp+124L 0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.fffffp+124L 0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.fffffp+124L 0x4p-128L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 downward dbl-64 0xf.fffffp+124 0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 tonearest dbl-64 0xf.fffffp+124 0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 towardzero dbl-64 0xf.fffffp+124 0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 upward dbl-64 0xf.fffffp+124 0x4p-1024 : 0x1.921fb54442d19p+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.fffffp+124L 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.fffffp+124L 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.fffffp+124L 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.fffffp+124L 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffp+124L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffp+124L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffp+124L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffp+124L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.fffffp+124L 0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.fffffp+124L 0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.fffffp+124L 0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.fffffp+124L 0x4p-1024L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.fffffp+124L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.fffffp+124L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.fffffp+124L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.fffffp+124L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.fffffp+124L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.fffffp+124L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffp+124L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffp+124L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffp+124L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffp+124L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.fffffp+124L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.fffffp+124L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.fffffp+124L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.fffffp+124L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.fffffp+124L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.fffffp+124L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffp+124L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffp+124L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffp+124L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffp+124L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward dbl-64 0xf.fffffp+124 0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 tonearest dbl-64 0xf.fffffp+124 0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 towardzero dbl-64 0xf.fffffp+124 0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 upward dbl-64 0xf.fffffp+124 0x8p-972 : 0x1.921fb54442d19p+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.fffffp+124L 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.fffffp+124L 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.fffffp+124L 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.fffffp+124L 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffp+124L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffp+124L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffp+124L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffp+124L 0x8p-972L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.fffffp+124L 0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.fffffp+124L 0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.fffffp+124L 0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.fffffp+124L 0x8p-972L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 downward dbl-64 0xf.ffffffffffff8p+1020 0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 tonearest dbl-64 0xf.ffffffffffff8p+1020 0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 towardzero dbl-64 0xf.ffffffffffff8p+1020 0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 upward dbl-64 0xf.ffffffffffff8p+1020 0x4p-128 : 0x1.921fb54442d19p+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-128L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-128L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 downward dbl-64 0xf.ffffffffffff8p+1020 0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 tonearest dbl-64 0xf.ffffffffffff8p+1020 0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 towardzero dbl-64 0xf.ffffffffffff8p+1020 0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 upward dbl-64 0xf.ffffffffffff8p+1020 0x4p-1024 : 0x1.921fb54442d19p+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1024L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward dbl-64 0xf.ffffffffffff8p+1020 0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 tonearest dbl-64 0xf.ffffffffffff8p+1020 0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 towardzero dbl-64 0xf.ffffffffffff8p+1020 0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok
+= atan2 upward dbl-64 0xf.ffffffffffff8p+1020 0x8p-972 : 0x1.921fb54442d19p+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-972L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-972L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-128L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-972L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-128L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-972L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-128L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-128L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1024L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-972L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-972L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+atan2 -max -min
+= atan2 downward flt-32 -0xf.fffffp+124f -0x4p-128f : -0x1.921fb6p+0f : inexact-ok
+= atan2 tonearest flt-32 -0xf.fffffp+124f -0x4p-128f : -0x1.921fb6p+0f : inexact-ok
+= atan2 towardzero flt-32 -0xf.fffffp+124f -0x4p-128f : -0x1.921fb4p+0f : inexact-ok
+= atan2 upward flt-32 -0xf.fffffp+124f -0x4p-128f : -0x1.921fb4p+0f : inexact-ok
+= atan2 downward dbl-64 -0xf.fffffp+124 -0x4p-128 : -0x1.921fb54442d19p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0xf.fffffp+124 -0x4p-128 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0xf.fffffp+124 -0x4p-128 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 upward dbl-64 -0xf.fffffp+124 -0x4p-128 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0xf.fffffp+124L -0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0xf.fffffp+124L -0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0xf.fffffp+124L -0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0xf.fffffp+124L -0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0xf.fffffp+124L -0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L -0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L -0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0xf.fffffp+124L -0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.fffffp+124L -0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.fffffp+124L -0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.fffffp+124L -0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.fffffp+124L -0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0xf.fffffp+124L -0x4p-128L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0xf.fffffp+124L -0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0xf.fffffp+124L -0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0xf.fffffp+124L -0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 downward dbl-64 -0xf.fffffp+124 -0x4p-1024 : -0x1.921fb54442d19p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0xf.fffffp+124 -0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0xf.fffffp+124 -0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 upward dbl-64 -0xf.fffffp+124 -0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0xf.fffffp+124L -0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0xf.fffffp+124L -0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0xf.fffffp+124L -0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0xf.fffffp+124L -0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0xf.fffffp+124L -0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L -0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L -0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0xf.fffffp+124L -0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.fffffp+124L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.fffffp+124L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.fffffp+124L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.fffffp+124L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0xf.fffffp+124L -0x4p-1024L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0xf.fffffp+124L -0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0xf.fffffp+124L -0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0xf.fffffp+124L -0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0xf.fffffp+124L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0xf.fffffp+124L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0xf.fffffp+124L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0xf.fffffp+124L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0xf.fffffp+124L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0xf.fffffp+124L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.fffffp+124L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.fffffp+124L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.fffffp+124L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.fffffp+124L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0xf.fffffp+124L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0xf.fffffp+124L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0xf.fffffp+124L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0xf.fffffp+124L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0xf.fffffp+124L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0xf.fffffp+124L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.fffffp+124L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.fffffp+124L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.fffffp+124L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.fffffp+124L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward dbl-64 -0xf.fffffp+124 -0x8p-972 : -0x1.921fb54442d19p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0xf.fffffp+124 -0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0xf.fffffp+124 -0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 upward dbl-64 -0xf.fffffp+124 -0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0xf.fffffp+124L -0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0xf.fffffp+124L -0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0xf.fffffp+124L -0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0xf.fffffp+124L -0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0xf.fffffp+124L -0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L -0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L -0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0xf.fffffp+124L -0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.fffffp+124L -0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.fffffp+124L -0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.fffffp+124L -0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.fffffp+124L -0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0xf.fffffp+124L -0x8p-972L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0xf.fffffp+124L -0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0xf.fffffp+124L -0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0xf.fffffp+124L -0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 downward dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0x1.921fb54442d19p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 upward dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-128 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-128L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 downward dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0x1.921fb54442d19p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 upward dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-1024L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward dbl-64 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0x1.921fb54442d19p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 upward dbl-64 -0xf.ffffffffffff8p+1020 -0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p-972L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-128L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1024L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok
+atan2 0.75 1
+= atan2 downward flt-32 0xcp-4f 0x1p+0f : 0xa.4bc7dp-4f : inexact-ok
+= atan2 tonearest flt-32 0xcp-4f 0x1p+0f : 0xa.4bc7dp-4f : inexact-ok
+= atan2 towardzero flt-32 0xcp-4f 0x1p+0f : 0xa.4bc7dp-4f : inexact-ok
+= atan2 upward flt-32 0xcp-4f 0x1p+0f : 0xa.4bc7ep-4f : inexact-ok
+= atan2 downward dbl-64 0xcp-4 0x1p+0 : 0xa.4bc7d1934f708p-4 : inexact-ok
+= atan2 tonearest dbl-64 0xcp-4 0x1p+0 : 0xa.4bc7d1934f708p-4 : inexact-ok
+= atan2 towardzero dbl-64 0xcp-4 0x1p+0 : 0xa.4bc7d1934f708p-4 : inexact-ok
+= atan2 upward dbl-64 0xcp-4 0x1p+0 : 0xa.4bc7d1934f71p-4 : inexact-ok
+= atan2 downward ldbl-96-intel 0xcp-4L 0x1p+0L : 0xa.4bc7d1934f70924p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xcp-4L 0x1p+0L : 0xa.4bc7d1934f70924p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xcp-4L 0x1p+0L : 0xa.4bc7d1934f70924p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0xcp-4L 0x1p+0L : 0xa.4bc7d1934f70925p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xcp-4L 0x1p+0L : 0xa.4bc7d1934f70924p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xcp-4L 0x1p+0L : 0xa.4bc7d1934f70924p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xcp-4L 0x1p+0L : 0xa.4bc7d1934f70924p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xcp-4L 0x1p+0L : 0xa.4bc7d1934f70925p-4L : inexact-ok
+= atan2 downward ldbl-128 0xcp-4L 0x1p+0L : 0xa.4bc7d1934f7092419a87f2a457d8p-4L : inexact-ok
+= atan2 tonearest ldbl-128 0xcp-4L 0x1p+0L : 0xa.4bc7d1934f7092419a87f2a457d8p-4L : inexact-ok
+= atan2 towardzero ldbl-128 0xcp-4L 0x1p+0L : 0xa.4bc7d1934f7092419a87f2a457d8p-4L : inexact-ok
+= atan2 upward ldbl-128 0xcp-4L 0x1p+0L : 0xa.4bc7d1934f7092419a87f2a457ep-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0xcp-4L 0x1p+0L : 0xa.4bc7d1934f7092419a87f2a454p-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xcp-4L 0x1p+0L : 0xa.4bc7d1934f7092419a87f2a458p-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xcp-4L 0x1p+0L : 0xa.4bc7d1934f7092419a87f2a454p-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0xcp-4L 0x1p+0L : 0xa.4bc7d1934f7092419a87f2a458p-4L : inexact-ok
+atan2 -0.75 1.0
+= atan2 downward flt-32 -0xcp-4f 0x1p+0f : -0xa.4bc7ep-4f : inexact-ok
+= atan2 tonearest flt-32 -0xcp-4f 0x1p+0f : -0xa.4bc7dp-4f : inexact-ok
+= atan2 towardzero flt-32 -0xcp-4f 0x1p+0f : -0xa.4bc7dp-4f : inexact-ok
+= atan2 upward flt-32 -0xcp-4f 0x1p+0f : -0xa.4bc7dp-4f : inexact-ok
+= atan2 downward dbl-64 -0xcp-4 0x1p+0 : -0xa.4bc7d1934f71p-4 : inexact-ok
+= atan2 tonearest dbl-64 -0xcp-4 0x1p+0 : -0xa.4bc7d1934f708p-4 : inexact-ok
+= atan2 towardzero dbl-64 -0xcp-4 0x1p+0 : -0xa.4bc7d1934f708p-4 : inexact-ok
+= atan2 upward dbl-64 -0xcp-4 0x1p+0 : -0xa.4bc7d1934f708p-4 : inexact-ok
+= atan2 downward ldbl-96-intel -0xcp-4L 0x1p+0L : -0xa.4bc7d1934f70925p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0xcp-4L 0x1p+0L : -0xa.4bc7d1934f70924p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0xcp-4L 0x1p+0L : -0xa.4bc7d1934f70924p-4L : inexact-ok
+= atan2 upward ldbl-96-intel -0xcp-4L 0x1p+0L : -0xa.4bc7d1934f70924p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k -0xcp-4L 0x1p+0L : -0xa.4bc7d1934f70925p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0xcp-4L 0x1p+0L : -0xa.4bc7d1934f70924p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0xcp-4L 0x1p+0L : -0xa.4bc7d1934f70924p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k -0xcp-4L 0x1p+0L : -0xa.4bc7d1934f70924p-4L : inexact-ok
+= atan2 downward ldbl-128 -0xcp-4L 0x1p+0L : -0xa.4bc7d1934f7092419a87f2a457ep-4L : inexact-ok
+= atan2 tonearest ldbl-128 -0xcp-4L 0x1p+0L : -0xa.4bc7d1934f7092419a87f2a457d8p-4L : inexact-ok
+= atan2 towardzero ldbl-128 -0xcp-4L 0x1p+0L : -0xa.4bc7d1934f7092419a87f2a457d8p-4L : inexact-ok
+= atan2 upward ldbl-128 -0xcp-4L 0x1p+0L : -0xa.4bc7d1934f7092419a87f2a457d8p-4L : inexact-ok
+= atan2 downward ldbl-128ibm -0xcp-4L 0x1p+0L : -0xa.4bc7d1934f7092419a87f2a458p-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0xcp-4L 0x1p+0L : -0xa.4bc7d1934f7092419a87f2a458p-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0xcp-4L 0x1p+0L : -0xa.4bc7d1934f7092419a87f2a454p-4L : inexact-ok
+= atan2 upward ldbl-128ibm -0xcp-4L 0x1p+0L : -0xa.4bc7d1934f7092419a87f2a454p-4L : inexact-ok
+atan2 0.75 -1.0
+= atan2 downward flt-32 0xcp-4f -0x1p+0f : 0x2.7f82ecp+0f : inexact-ok
+= atan2 tonearest flt-32 0xcp-4f -0x1p+0f : 0x2.7f82ecp+0f : inexact-ok
+= atan2 towardzero flt-32 0xcp-4f -0x1p+0f : 0x2.7f82ecp+0f : inexact-ok
+= atan2 upward flt-32 0xcp-4f -0x1p+0f : 0x2.7f82fp+0f : inexact-ok
+= atan2 downward dbl-64 0xcp-4 -0x1p+0 : 0x2.7f82ed6f50abep+0 : inexact-ok
+= atan2 tonearest dbl-64 0xcp-4 -0x1p+0 : 0x2.7f82ed6f50acp+0 : inexact-ok
+= atan2 towardzero dbl-64 0xcp-4 -0x1p+0 : 0x2.7f82ed6f50abep+0 : inexact-ok
+= atan2 upward dbl-64 0xcp-4 -0x1p+0 : 0x2.7f82ed6f50acp+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0xcp-4L -0x1p+0L : 0x2.7f82ed6f50abffacp+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0xcp-4L -0x1p+0L : 0x2.7f82ed6f50abffbp+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0xcp-4L -0x1p+0L : 0x2.7f82ed6f50abffacp+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0xcp-4L -0x1p+0L : 0x2.7f82ed6f50abffbp+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0xcp-4L -0x1p+0L : 0x2.7f82ed6f50abffacp+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0xcp-4L -0x1p+0L : 0x2.7f82ed6f50abffbp+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0xcp-4L -0x1p+0L : 0x2.7f82ed6f50abffacp+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0xcp-4L -0x1p+0L : 0x2.7f82ed6f50abffbp+0L : inexact-ok
+= atan2 downward ldbl-128 0xcp-4L -0x1p+0L : 0x2.7f82ed6f50abffaef9710b03bdf2p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0xcp-4L -0x1p+0L : 0x2.7f82ed6f50abffaef9710b03bdf2p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0xcp-4L -0x1p+0L : 0x2.7f82ed6f50abffaef9710b03bdf2p+0L : inexact-ok
+= atan2 upward ldbl-128 0xcp-4L -0x1p+0L : 0x2.7f82ed6f50abffaef9710b03bdf4p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0xcp-4L -0x1p+0L : 0x2.7f82ed6f50abffaef9710b03bdp+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0xcp-4L -0x1p+0L : 0x2.7f82ed6f50abffaef9710b03bep+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0xcp-4L -0x1p+0L : 0x2.7f82ed6f50abffaef9710b03bdp+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0xcp-4L -0x1p+0L : 0x2.7f82ed6f50abffaef9710b03bep+0L : inexact-ok
+atan2 -0.75 -1.0
+= atan2 downward flt-32 -0xcp-4f -0x1p+0f : -0x2.7f82fp+0f : inexact-ok
+= atan2 tonearest flt-32 -0xcp-4f -0x1p+0f : -0x2.7f82ecp+0f : inexact-ok
+= atan2 towardzero flt-32 -0xcp-4f -0x1p+0f : -0x2.7f82ecp+0f : inexact-ok
+= atan2 upward flt-32 -0xcp-4f -0x1p+0f : -0x2.7f82ecp+0f : inexact-ok
+= atan2 downward dbl-64 -0xcp-4 -0x1p+0 : -0x2.7f82ed6f50acp+0 : inexact-ok
+= atan2 tonearest dbl-64 -0xcp-4 -0x1p+0 : -0x2.7f82ed6f50acp+0 : inexact-ok
+= atan2 towardzero dbl-64 -0xcp-4 -0x1p+0 : -0x2.7f82ed6f50abep+0 : inexact-ok
+= atan2 upward dbl-64 -0xcp-4 -0x1p+0 : -0x2.7f82ed6f50abep+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0xcp-4L -0x1p+0L : -0x2.7f82ed6f50abffbp+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0xcp-4L -0x1p+0L : -0x2.7f82ed6f50abffbp+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0xcp-4L -0x1p+0L : -0x2.7f82ed6f50abffacp+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0xcp-4L -0x1p+0L : -0x2.7f82ed6f50abffacp+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0xcp-4L -0x1p+0L : -0x2.7f82ed6f50abffbp+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0xcp-4L -0x1p+0L : -0x2.7f82ed6f50abffbp+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0xcp-4L -0x1p+0L : -0x2.7f82ed6f50abffacp+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0xcp-4L -0x1p+0L : -0x2.7f82ed6f50abffacp+0L : inexact-ok
+= atan2 downward ldbl-128 -0xcp-4L -0x1p+0L : -0x2.7f82ed6f50abffaef9710b03bdf4p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0xcp-4L -0x1p+0L : -0x2.7f82ed6f50abffaef9710b03bdf2p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0xcp-4L -0x1p+0L : -0x2.7f82ed6f50abffaef9710b03bdf2p+0L : inexact-ok
+= atan2 upward ldbl-128 -0xcp-4L -0x1p+0L : -0x2.7f82ed6f50abffaef9710b03bdf2p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0xcp-4L -0x1p+0L : -0x2.7f82ed6f50abffaef9710b03bep+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0xcp-4L -0x1p+0L : -0x2.7f82ed6f50abffaef9710b03bep+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0xcp-4L -0x1p+0L : -0x2.7f82ed6f50abffaef9710b03bdp+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0xcp-4L -0x1p+0L : -0x2.7f82ed6f50abffaef9710b03bdp+0L : inexact-ok
+atan2 0.390625 .00029
+= atan2 downward flt-32 0x6.4p-4f 0x1.30164ap-12f : 0x1.91ef0cp+0f : inexact-ok
+= atan2 tonearest flt-32 0x6.4p-4f 0x1.30164ap-12f : 0x1.91ef0ep+0f : inexact-ok
+= atan2 towardzero flt-32 0x6.4p-4f 0x1.30164ap-12f : 0x1.91ef0cp+0f : inexact-ok
+= atan2 upward flt-32 0x6.4p-4f 0x1.30164ap-12f : 0x1.91ef0ep+0f : inexact-ok
+= atan2 downward dbl-64 0x6.4p-4 0x1.30164ap-12 : 0x1.91ef0ddcd8c8cp+0 : inexact-ok
+= atan2 tonearest dbl-64 0x6.4p-4 0x1.30164ap-12 : 0x1.91ef0ddcd8c8cp+0 : inexact-ok
+= atan2 towardzero dbl-64 0x6.4p-4 0x1.30164ap-12 : 0x1.91ef0ddcd8c8cp+0 : inexact-ok
+= atan2 upward dbl-64 0x6.4p-4 0x1.30164ap-12 : 0x1.91ef0ddcd8c8dp+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0x6.4p-4L 0x1.30164ap-12L : 0x1.91ef0ddcd8c8c7aep+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x6.4p-4L 0x1.30164ap-12L : 0x1.91ef0ddcd8c8c7bp+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x6.4p-4L 0x1.30164ap-12L : 0x1.91ef0ddcd8c8c7aep+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0x6.4p-4L 0x1.30164ap-12L : 0x1.91ef0ddcd8c8c7bp+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x6.4p-4L 0x1.30164ap-12L : 0x1.91ef0ddcd8c8c7aep+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x6.4p-4L 0x1.30164ap-12L : 0x1.91ef0ddcd8c8c7bp+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x6.4p-4L 0x1.30164ap-12L : 0x1.91ef0ddcd8c8c7aep+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x6.4p-4L 0x1.30164ap-12L : 0x1.91ef0ddcd8c8c7bp+0L : inexact-ok
+= atan2 downward ldbl-128 0x6.4p-4L 0x1.30164ap-12L : 0x1.91ef0ddcd8c8c7af32bf86fefb5bp+0L : inexact-ok
+= atan2 tonearest ldbl-128 0x6.4p-4L 0x1.30164ap-12L : 0x1.91ef0ddcd8c8c7af32bf86fefb5cp+0L : inexact-ok
+= atan2 towardzero ldbl-128 0x6.4p-4L 0x1.30164ap-12L : 0x1.91ef0ddcd8c8c7af32bf86fefb5bp+0L : inexact-ok
+= atan2 upward ldbl-128 0x6.4p-4L 0x1.30164ap-12L : 0x1.91ef0ddcd8c8c7af32bf86fefb5cp+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0x6.4p-4L 0x1.30164ap-12L : 0x1.91ef0ddcd8c8c7af32bf86fefbp+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x6.4p-4L 0x1.30164ap-12L : 0x1.91ef0ddcd8c8c7af32bf86fefb8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x6.4p-4L 0x1.30164ap-12L : 0x1.91ef0ddcd8c8c7af32bf86fefbp+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0x6.4p-4L 0x1.30164ap-12L : 0x1.91ef0ddcd8c8c7af32bf86fefb8p+0L : inexact-ok
+= atan2 downward flt-32 0x6.4p-4f 0x1.301648p-12f : 0x1.91ef0cp+0f : inexact-ok
+= atan2 tonearest flt-32 0x6.4p-4f 0x1.301648p-12f : 0x1.91ef0ep+0f : inexact-ok
+= atan2 towardzero flt-32 0x6.4p-4f 0x1.301648p-12f : 0x1.91ef0cp+0f : inexact-ok
+= atan2 upward flt-32 0x6.4p-4f 0x1.301648p-12f : 0x1.91ef0ep+0f : inexact-ok
+= atan2 downward dbl-64 0x6.4p-4 0x1.301648p-12 : 0x1.91ef0ddd2ab44p+0 : inexact-ok
+= atan2 tonearest dbl-64 0x6.4p-4 0x1.301648p-12 : 0x1.91ef0ddd2ab45p+0 : inexact-ok
+= atan2 towardzero dbl-64 0x6.4p-4 0x1.301648p-12 : 0x1.91ef0ddd2ab44p+0 : inexact-ok
+= atan2 upward dbl-64 0x6.4p-4 0x1.301648p-12 : 0x1.91ef0ddd2ab45p+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0x6.4p-4L 0x1.301648p-12L : 0x1.91ef0ddd2ab449d8p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x6.4p-4L 0x1.301648p-12L : 0x1.91ef0ddd2ab449d8p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x6.4p-4L 0x1.301648p-12L : 0x1.91ef0ddd2ab449d8p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0x6.4p-4L 0x1.301648p-12L : 0x1.91ef0ddd2ab449dap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x6.4p-4L 0x1.301648p-12L : 0x1.91ef0ddd2ab449d8p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x6.4p-4L 0x1.301648p-12L : 0x1.91ef0ddd2ab449d8p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x6.4p-4L 0x1.301648p-12L : 0x1.91ef0ddd2ab449d8p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x6.4p-4L 0x1.301648p-12L : 0x1.91ef0ddd2ab449dap+0L : inexact-ok
+= atan2 downward ldbl-128 0x6.4p-4L 0x1.301648p-12L : 0x1.91ef0ddd2ab449d869c37032d23fp+0L : inexact-ok
+= atan2 tonearest ldbl-128 0x6.4p-4L 0x1.301648p-12L : 0x1.91ef0ddd2ab449d869c37032d24p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0x6.4p-4L 0x1.301648p-12L : 0x1.91ef0ddd2ab449d869c37032d23fp+0L : inexact-ok
+= atan2 upward ldbl-128 0x6.4p-4L 0x1.301648p-12L : 0x1.91ef0ddd2ab449d869c37032d24p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0x6.4p-4L 0x1.301648p-12L : 0x1.91ef0ddd2ab449d869c37032d2p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x6.4p-4L 0x1.301648p-12L : 0x1.91ef0ddd2ab449d869c37032d2p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x6.4p-4L 0x1.301648p-12L : 0x1.91ef0ddd2ab449d869c37032d2p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0x6.4p-4L 0x1.301648p-12L : 0x1.91ef0ddd2ab449d869c37032d28p+0L : inexact-ok
+= atan2 downward dbl-64 0x6.4p-4 0x1.30164840e171ap-12 : 0x1.91ef0ddd2052cp+0 : inexact-ok
+= atan2 tonearest dbl-64 0x6.4p-4 0x1.30164840e171ap-12 : 0x1.91ef0ddd2052cp+0 : inexact-ok
+= atan2 towardzero dbl-64 0x6.4p-4 0x1.30164840e171ap-12 : 0x1.91ef0ddd2052cp+0 : inexact-ok
+= atan2 upward dbl-64 0x6.4p-4 0x1.30164840e171ap-12 : 0x1.91ef0ddd2052dp+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0x6.4p-4L 0x1.30164840e171ap-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x6.4p-4L 0x1.30164840e171ap-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x6.4p-4L 0x1.30164840e171ap-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0x6.4p-4L 0x1.30164840e171ap-12L : 0x1.91ef0ddd2052c768p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x6.4p-4L 0x1.30164840e171ap-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x6.4p-4L 0x1.30164840e171ap-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x6.4p-4L 0x1.30164840e171ap-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x6.4p-4L 0x1.30164840e171ap-12L : 0x1.91ef0ddd2052c768p+0L : inexact-ok
+= atan2 downward ldbl-128 0x6.4p-4L 0x1.30164840e171ap-12L : 0x1.91ef0ddd2052c7667bf2f32a78eep+0L : inexact-ok
+= atan2 tonearest ldbl-128 0x6.4p-4L 0x1.30164840e171ap-12L : 0x1.91ef0ddd2052c7667bf2f32a78efp+0L : inexact-ok
+= atan2 towardzero ldbl-128 0x6.4p-4L 0x1.30164840e171ap-12L : 0x1.91ef0ddd2052c7667bf2f32a78eep+0L : inexact-ok
+= atan2 upward ldbl-128 0x6.4p-4L 0x1.30164840e171ap-12L : 0x1.91ef0ddd2052c7667bf2f32a78efp+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0x6.4p-4L 0x1.30164840e171ap-12L : 0x1.91ef0ddd2052c7667bf2f32a788p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x6.4p-4L 0x1.30164840e171ap-12L : 0x1.91ef0ddd2052c7667bf2f32a79p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x6.4p-4L 0x1.30164840e171ap-12L : 0x1.91ef0ddd2052c7667bf2f32a788p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0x6.4p-4L 0x1.30164840e171ap-12L : 0x1.91ef0ddd2052c7667bf2f32a79p+0L : inexact-ok
+= atan2 downward dbl-64 0x6.4p-4 0x1.30164840e1719p-12 : 0x1.91ef0ddd2052cp+0 : inexact-ok
+= atan2 tonearest dbl-64 0x6.4p-4 0x1.30164840e1719p-12 : 0x1.91ef0ddd2052cp+0 : inexact-ok
+= atan2 towardzero dbl-64 0x6.4p-4 0x1.30164840e1719p-12 : 0x1.91ef0ddd2052cp+0 : inexact-ok
+= atan2 upward dbl-64 0x6.4p-4 0x1.30164840e1719p-12 : 0x1.91ef0ddd2052dp+0 : inexact-ok
+= atan2 downward ldbl-96-intel 0x6.4p-4L 0x1.30164840e1719p-12L : 0x1.91ef0ddd2052c768p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x6.4p-4L 0x1.30164840e1719p-12L : 0x1.91ef0ddd2052c76ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x6.4p-4L 0x1.30164840e1719p-12L : 0x1.91ef0ddd2052c768p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0x6.4p-4L 0x1.30164840e1719p-12L : 0x1.91ef0ddd2052c76ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x6.4p-4L 0x1.30164840e1719p-12L : 0x1.91ef0ddd2052c768p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x6.4p-4L 0x1.30164840e1719p-12L : 0x1.91ef0ddd2052c76ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x6.4p-4L 0x1.30164840e1719p-12L : 0x1.91ef0ddd2052c768p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x6.4p-4L 0x1.30164840e1719p-12L : 0x1.91ef0ddd2052c76ap+0L : inexact-ok
+= atan2 downward ldbl-128 0x6.4p-4L 0x1.30164840e1719p-12L : 0x1.91ef0ddd2052c7690b4f0474312bp+0L : inexact-ok
+= atan2 tonearest ldbl-128 0x6.4p-4L 0x1.30164840e1719p-12L : 0x1.91ef0ddd2052c7690b4f0474312cp+0L : inexact-ok
+= atan2 towardzero ldbl-128 0x6.4p-4L 0x1.30164840e1719p-12L : 0x1.91ef0ddd2052c7690b4f0474312bp+0L : inexact-ok
+= atan2 upward ldbl-128 0x6.4p-4L 0x1.30164840e1719p-12L : 0x1.91ef0ddd2052c7690b4f0474312cp+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719p-12L : 0x1.91ef0ddd2052c7690b4f047431p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719p-12L : 0x1.91ef0ddd2052c7690b4f047431p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719p-12L : 0x1.91ef0ddd2052c7690b4f047431p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719p-12L : 0x1.91ef0ddd2052c7690b4f0474318p+0L : inexact-ok
+= atan2 downward ldbl-96-intel 0x6.4p-4L 0x1.30164840e1719f8p-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x6.4p-4L 0x1.30164840e1719f8p-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x6.4p-4L 0x1.30164840e1719f8p-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0x6.4p-4L 0x1.30164840e1719f8p-12L : 0x1.91ef0ddd2052c768p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x6.4p-4L 0x1.30164840e1719f8p-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x6.4p-4L 0x1.30164840e1719f8p-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x6.4p-4L 0x1.30164840e1719f8p-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x6.4p-4L 0x1.30164840e1719f8p-12L : 0x1.91ef0ddd2052c768p+0L : inexact-ok
+= atan2 downward ldbl-128 0x6.4p-4L 0x1.30164840e1719f8p-12L : 0x1.91ef0ddd2052c766906dd3b4c6bp+0L : inexact-ok
+= atan2 tonearest ldbl-128 0x6.4p-4L 0x1.30164840e1719f8p-12L : 0x1.91ef0ddd2052c766906dd3b4c6b1p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0x6.4p-4L 0x1.30164840e1719f8p-12L : 0x1.91ef0ddd2052c766906dd3b4c6bp+0L : inexact-ok
+= atan2 upward ldbl-128 0x6.4p-4L 0x1.30164840e1719f8p-12L : 0x1.91ef0ddd2052c766906dd3b4c6b1p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719f8p-12L : 0x1.91ef0ddd2052c766906dd3b4c68p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719f8p-12L : 0x1.91ef0ddd2052c766906dd3b4c68p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719f8p-12L : 0x1.91ef0ddd2052c766906dd3b4c68p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719f8p-12L : 0x1.91ef0ddd2052c766906dd3b4c7p+0L : inexact-ok
+= atan2 downward ldbl-96-intel 0x6.4p-4L 0x1.30164840e1719f7ep-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x6.4p-4L 0x1.30164840e1719f7ep-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x6.4p-4L 0x1.30164840e1719f7ep-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 upward ldbl-96-intel 0x6.4p-4L 0x1.30164840e1719f7ep-12L : 0x1.91ef0ddd2052c768p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x6.4p-4L 0x1.30164840e1719f7ep-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x6.4p-4L 0x1.30164840e1719f7ep-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x6.4p-4L 0x1.30164840e1719f7ep-12L : 0x1.91ef0ddd2052c766p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x6.4p-4L 0x1.30164840e1719f7ep-12L : 0x1.91ef0ddd2052c768p+0L : inexact-ok
+= atan2 downward ldbl-128 0x6.4p-4L 0x1.30164840e1719f7ep-12L : 0x1.91ef0ddd2052c76690bfbf36efe7p+0L : inexact-ok
+= atan2 tonearest ldbl-128 0x6.4p-4L 0x1.30164840e1719f7ep-12L : 0x1.91ef0ddd2052c76690bfbf36efe8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 0x6.4p-4L 0x1.30164840e1719f7ep-12L : 0x1.91ef0ddd2052c76690bfbf36efe7p+0L : inexact-ok
+= atan2 upward ldbl-128 0x6.4p-4L 0x1.30164840e1719f7ep-12L : 0x1.91ef0ddd2052c76690bfbf36efe8p+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719f7ep-12L : 0x1.91ef0ddd2052c76690bfbf36ef8p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719f7ep-12L : 0x1.91ef0ddd2052c76690bfbf36fp+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719f7ep-12L : 0x1.91ef0ddd2052c76690bfbf36ef8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719f7ep-12L : 0x1.91ef0ddd2052c76690bfbf36fp+0L : inexact-ok
+= atan2 downward ldbl-128 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1d3fp-12L : 0x1.91ef0ddd2052c7669080482ae66bp+0L : inexact-ok
+= atan2 tonearest ldbl-128 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1d3fp-12L : 0x1.91ef0ddd2052c7669080482ae66cp+0L : inexact-ok
+= atan2 towardzero ldbl-128 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1d3fp-12L : 0x1.91ef0ddd2052c7669080482ae66bp+0L : inexact-ok
+= atan2 upward ldbl-128 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1d3fp-12L : 0x1.91ef0ddd2052c7669080482ae66cp+0L : inexact-ok
+= atan2 downward ldbl-128 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1d3ep-12L : 0x1.91ef0ddd2052c7669080482ae66bp+0L : inexact-ok
+= atan2 tonearest ldbl-128 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1d3ep-12L : 0x1.91ef0ddd2052c7669080482ae66cp+0L : inexact-ok
+= atan2 towardzero ldbl-128 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1d3ep-12L : 0x1.91ef0ddd2052c7669080482ae66bp+0L : inexact-ok
+= atan2 upward ldbl-128 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1d3ep-12L : 0x1.91ef0ddd2052c7669080482ae66cp+0L : inexact-ok
+= atan2 downward ldbl-128 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1d8p-12L : 0x1.91ef0ddd2052c7669080482ae66bp+0L : inexact-ok
+= atan2 tonearest ldbl-128 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1d8p-12L : 0x1.91ef0ddd2052c7669080482ae66cp+0L : inexact-ok
+= atan2 towardzero ldbl-128 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1d8p-12L : 0x1.91ef0ddd2052c7669080482ae66bp+0L : inexact-ok
+= atan2 upward ldbl-128 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1d8p-12L : 0x1.91ef0ddd2052c7669080482ae66cp+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1d8p-12L : 0x1.91ef0ddd2052c7669080482ae6p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1d8p-12L : 0x1.91ef0ddd2052c7669080482ae68p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1d8p-12L : 0x1.91ef0ddd2052c7669080482ae6p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1d8p-12L : 0x1.91ef0ddd2052c7669080482ae68p+0L : inexact-ok
+= atan2 downward ldbl-128 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1dp-12L : 0x1.91ef0ddd2052c7669080482ae66cp+0L : inexact-ok
+= atan2 tonearest ldbl-128 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1dp-12L : 0x1.91ef0ddd2052c7669080482ae66cp+0L : inexact-ok
+= atan2 towardzero ldbl-128 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1dp-12L : 0x1.91ef0ddd2052c7669080482ae66cp+0L : inexact-ok
+= atan2 upward ldbl-128 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1dp-12L : 0x1.91ef0ddd2052c7669080482ae66dp+0L : inexact-ok
+= atan2 downward ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1dp-12L : 0x1.91ef0ddd2052c7669080482ae6p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1dp-12L : 0x1.91ef0ddd2052c7669080482ae68p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1dp-12L : 0x1.91ef0ddd2052c7669080482ae6p+0L : inexact-ok
+= atan2 upward ldbl-128ibm 0x6.4p-4L 0x1.30164840e1719f7f8ca8198f1dp-12L : 0x1.91ef0ddd2052c7669080482ae68p+0L : inexact-ok
+atan2 1.390625 0.9296875
+= atan2 downward flt-32 0x1.64p+0f 0xe.ep-4f : 0xf.b437ap-4f : inexact-ok
+= atan2 tonearest flt-32 0x1.64p+0f 0xe.ep-4f : 0xf.b437ap-4f : inexact-ok
+= atan2 towardzero flt-32 0x1.64p+0f 0xe.ep-4f : 0xf.b437ap-4f : inexact-ok
+= atan2 upward flt-32 0x1.64p+0f 0xe.ep-4f : 0xf.b437bp-4f : inexact-ok
+= atan2 downward dbl-64 0x1.64p+0 0xe.ep-4 : 0xf.b437a7208779p-4 : inexact-ok
+= atan2 tonearest dbl-64 0x1.64p+0 0xe.ep-4 : 0xf.b437a72087798p-4 : inexact-ok
+= atan2 towardzero dbl-64 0x1.64p+0 0xe.ep-4 : 0xf.b437a7208779p-4 : inexact-ok
+= atan2 upward dbl-64 0x1.64p+0 0xe.ep-4 : 0xf.b437a72087798p-4 : inexact-ok
+= atan2 downward ldbl-96-intel 0x1.64p+0L 0xe.ep-4L : 0xf.b437a72087797cfp-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1.64p+0L 0xe.ep-4L : 0xf.b437a72087797cfp-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1.64p+0L 0xe.ep-4L : 0xf.b437a72087797cfp-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1.64p+0L 0xe.ep-4L : 0xf.b437a72087797dp-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1.64p+0L 0xe.ep-4L : 0xf.b437a72087797cfp-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1.64p+0L 0xe.ep-4L : 0xf.b437a72087797cfp-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1.64p+0L 0xe.ep-4L : 0xf.b437a72087797cfp-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1.64p+0L 0xe.ep-4L : 0xf.b437a72087797dp-4L : inexact-ok
+= atan2 downward ldbl-128 0x1.64p+0L 0xe.ep-4L : 0xf.b437a72087797cf2cd8d81111208p-4L : inexact-ok
+= atan2 tonearest ldbl-128 0x1.64p+0L 0xe.ep-4L : 0xf.b437a72087797cf2cd8d81111208p-4L : inexact-ok
+= atan2 towardzero ldbl-128 0x1.64p+0L 0xe.ep-4L : 0xf.b437a72087797cf2cd8d81111208p-4L : inexact-ok
+= atan2 upward ldbl-128 0x1.64p+0L 0xe.ep-4L : 0xf.b437a72087797cf2cd8d8111121p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1.64p+0L 0xe.ep-4L : 0xf.b437a72087797cf2cd8d81111p-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1.64p+0L 0xe.ep-4L : 0xf.b437a72087797cf2cd8d811114p-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1.64p+0L 0xe.ep-4L : 0xf.b437a72087797cf2cd8d81111p-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1.64p+0L 0xe.ep-4L : 0xf.b437a72087797cf2cd8d811114p-4L : inexact-ok
+atan2 -0.00756827042671106339 -.001792735857538728036
+= atan2 downward flt-32 -0x1.effe8p-8f -0x7.57d1d8p-12f : -0x1.cdaa9ep+0f : inexact-ok
+= atan2 tonearest flt-32 -0x1.effe8p-8f -0x7.57d1d8p-12f : -0x1.cdaa9ep+0f : inexact-ok
+= atan2 towardzero flt-32 -0x1.effe8p-8f -0x7.57d1d8p-12f : -0x1.cdaa9cp+0f : inexact-ok
+= atan2 upward flt-32 -0x1.effe8p-8f -0x7.57d1d8p-12f : -0x1.cdaa9cp+0f : inexact-ok
+= atan2 downward dbl-64 -0x1.effe8p-8 -0x7.57d1d8p-12 : -0x1.cdaa9db2d1b45p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1.effe8p-8 -0x7.57d1d8p-12 : -0x1.cdaa9db2d1b45p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1.effe8p-8 -0x7.57d1d8p-12 : -0x1.cdaa9db2d1b44p+0 : inexact-ok
+= atan2 upward dbl-64 -0x1.effe8p-8 -0x7.57d1d8p-12 : -0x1.cdaa9db2d1b44p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe8p-8L -0x7.57d1d8p-12L : -0x1.cdaa9db2d1b4481p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe8p-8L -0x7.57d1d8p-12L : -0x1.cdaa9db2d1b4481p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe8p-8L -0x7.57d1d8p-12L : -0x1.cdaa9db2d1b4480ep+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe8p-8L -0x7.57d1d8p-12L : -0x1.cdaa9db2d1b4480ep+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1d8p-12L : -0x1.cdaa9db2d1b4481p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1d8p-12L : -0x1.cdaa9db2d1b4481p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1d8p-12L : -0x1.cdaa9db2d1b4480ep+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1d8p-12L : -0x1.cdaa9db2d1b4480ep+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe8p-8L -0x7.57d1d8p-12L : -0x1.cdaa9db2d1b4480f9a874bb84e72p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe8p-8L -0x7.57d1d8p-12L : -0x1.cdaa9db2d1b4480f9a874bb84e72p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe8p-8L -0x7.57d1d8p-12L : -0x1.cdaa9db2d1b4480f9a874bb84e71p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe8p-8L -0x7.57d1d8p-12L : -0x1.cdaa9db2d1b4480f9a874bb84e71p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe8p-8L -0x7.57d1d8p-12L : -0x1.cdaa9db2d1b4480f9a874bb84e8p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe8p-8L -0x7.57d1d8p-12L : -0x1.cdaa9db2d1b4480f9a874bb84e8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe8p-8L -0x7.57d1d8p-12L : -0x1.cdaa9db2d1b4480f9a874bb84ep+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe8p-8L -0x7.57d1d8p-12L : -0x1.cdaa9db2d1b4480f9a874bb84ep+0L : inexact-ok
+= atan2 downward flt-32 -0x1.effe8p-8f -0x7.57d1ep-12f : -0x1.cdaa9ep+0f : inexact-ok
+= atan2 tonearest flt-32 -0x1.effe8p-8f -0x7.57d1ep-12f : -0x1.cdaa9ep+0f : inexact-ok
+= atan2 towardzero flt-32 -0x1.effe8p-8f -0x7.57d1ep-12f : -0x1.cdaa9cp+0f : inexact-ok
+= atan2 upward flt-32 -0x1.effe8p-8f -0x7.57d1ep-12f : -0x1.cdaa9cp+0f : inexact-ok
+= atan2 downward dbl-64 -0x1.effe8p-8 -0x7.57d1ep-12 : -0x1.cdaa9df15fde1p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1.effe8p-8 -0x7.57d1ep-12 : -0x1.cdaa9df15fde1p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1.effe8p-8 -0x7.57d1ep-12 : -0x1.cdaa9df15fdep+0 : inexact-ok
+= atan2 upward dbl-64 -0x1.effe8p-8 -0x7.57d1ep-12 : -0x1.cdaa9df15fdep+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe8p-8L -0x7.57d1ep-12L : -0x1.cdaa9df15fde0914p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe8p-8L -0x7.57d1ep-12L : -0x1.cdaa9df15fde0914p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe8p-8L -0x7.57d1ep-12L : -0x1.cdaa9df15fde0912p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe8p-8L -0x7.57d1ep-12L : -0x1.cdaa9df15fde0912p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1ep-12L : -0x1.cdaa9df15fde0914p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1ep-12L : -0x1.cdaa9df15fde0914p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1ep-12L : -0x1.cdaa9df15fde0912p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1ep-12L : -0x1.cdaa9df15fde0912p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe8p-8L -0x7.57d1ep-12L : -0x1.cdaa9df15fde0913df719335d87p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe8p-8L -0x7.57d1ep-12L : -0x1.cdaa9df15fde0913df719335d86fp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe8p-8L -0x7.57d1ep-12L : -0x1.cdaa9df15fde0913df719335d86fp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe8p-8L -0x7.57d1ep-12L : -0x1.cdaa9df15fde0913df719335d86fp+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe8p-8L -0x7.57d1ep-12L : -0x1.cdaa9df15fde0913df719335d88p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe8p-8L -0x7.57d1ep-12L : -0x1.cdaa9df15fde0913df719335d88p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe8p-8L -0x7.57d1ep-12L : -0x1.cdaa9df15fde0913df719335d8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe8p-8L -0x7.57d1ep-12L : -0x1.cdaa9df15fde0913df719335d8p+0L : inexact-ok
+= atan2 downward dbl-64 -0x1.effe8p-8 -0x7.57d1de0e51244p-12 : -0x1.cdaa9de22c46ep+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1.effe8p-8 -0x7.57d1de0e51244p-12 : -0x1.cdaa9de22c46ep+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1.effe8p-8 -0x7.57d1de0e51244p-12 : -0x1.cdaa9de22c46dp+0 : inexact-ok
+= atan2 upward dbl-64 -0x1.effe8p-8 -0x7.57d1de0e51244p-12 : -0x1.cdaa9de22c46dp+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe8p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9de22c46dd6cp+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe8p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9de22c46dd6ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe8p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9de22c46dd6ap+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe8p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9de22c46dd6ap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9de22c46dd6cp+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9de22c46dd6ap+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9de22c46dd6ap+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9de22c46dd6ap+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9de22c46dd6a08ed2c333239p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9de22c46dd6a08ed2c333239p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9de22c46dd6a08ed2c333238p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9de22c46dd6a08ed2c333238p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9de22c46dd6a08ed2c33328p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9de22c46dd6a08ed2c3332p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9de22c46dd6a08ed2c3332p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9de22c46dd6a08ed2c3332p+0L : inexact-ok
+= atan2 downward dbl-64 -0x1.effe8p-8 -0x7.57d1de0e51248p-12 : -0x1.cdaa9de22c46ep+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1.effe8p-8 -0x7.57d1de0e51248p-12 : -0x1.cdaa9de22c46ep+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1.effe8p-8 -0x7.57d1de0e51248p-12 : -0x1.cdaa9de22c46dp+0 : inexact-ok
+= atan2 upward dbl-64 -0x1.effe8p-8 -0x7.57d1de0e51248p-12 : -0x1.cdaa9de22c46dp+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe8p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9de22c46df6p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe8p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9de22c46df5ep+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe8p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9de22c46df5ep+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe8p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9de22c46df5ep+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9de22c46df6p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9de22c46df5ep+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9de22c46df5ep+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9de22c46df5ep+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9de22c46df5e7a3b2571f0a5p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9de22c46df5e7a3b2571f0a5p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9de22c46df5e7a3b2571f0a4p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9de22c46df5e7a3b2571f0a4p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9de22c46df5e7a3b2571f1p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9de22c46df5e7a3b2571f08p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9de22c46df5e7a3b2571f08p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9de22c46df5e7a3b2571f08p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe8p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9de22c46de96p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe8p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9de22c46de96p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe8p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9de22c46de94p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe8p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9de22c46de94p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9de22c46de96p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9de22c46de96p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9de22c46de94p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9de22c46de94p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9de22c46de9520a4c629b208p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9de22c46de9520a4c629b207p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9de22c46de9520a4c629b207p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9de22c46de9520a4c629b207p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9de22c46de9520a4c629b28p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9de22c46de9520a4c629b2p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9de22c46de9520a4c629b2p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9de22c46de9520a4c629b2p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe8p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9de22c46de96p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe8p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9de22c46de96p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe8p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9de22c46de94p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe8p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9de22c46de94p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9de22c46de96p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9de22c46de96p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9de22c46de94p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe8p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9de22c46de94p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9de22c46de955f32efe8d9ep+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9de22c46de955f32efe8d9dfp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9de22c46de955f32efe8d9dfp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9de22c46de955f32efe8d9dfp+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9de22c46de955f32efe8dap+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9de22c46de955f32efe8dap+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9de22c46de955f32efe8d98p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9de22c46de955f32efe8d98p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9de22c46de9526e102fad22cp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9de22c46de9526e102fad22cp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9de22c46de9526e102fad22bp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9de22c46de9526e102fad22bp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9de22c46de9526e102fad22dp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9de22c46de9526e102fad22cp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9de22c46de9526e102fad22cp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9de22c46de9526e102fad22cp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9de22c46de9526e102fad22bp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9de22c46de9526e102fad22ap+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9de22c46de9526e102fad22ap+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9de22c46de9526e102fad22ap+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9de22c46de9526e102fad28p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9de22c46de9526e102fad2p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9de22c46de9526e102fad2p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9de22c46de9526e102fad2p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9de22c46de9526e102fad23ap+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9de22c46de9526e102fad23ap+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9de22c46de9526e102fad239p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9de22c46de9526e102fad239p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9de22c46de9526e102fad28p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9de22c46de9526e102fad2p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9de22c46de9526e102fad2p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe8p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9de22c46de9526e102fad2p+0L : inexact-ok
+= atan2 downward flt-32 -0x1.effe82p-8f -0x7.57d1d8p-12f : -0x1.cdaa9ep+0f : inexact-ok
+= atan2 tonearest flt-32 -0x1.effe82p-8f -0x7.57d1d8p-12f : -0x1.cdaa9ep+0f : inexact-ok
+= atan2 towardzero flt-32 -0x1.effe82p-8f -0x7.57d1d8p-12f : -0x1.cdaa9cp+0f : inexact-ok
+= atan2 upward flt-32 -0x1.effe82p-8f -0x7.57d1d8p-12f : -0x1.cdaa9cp+0f : inexact-ok
+= atan2 downward dbl-64 -0x1.effe82p-8 -0x7.57d1d8p-12 : -0x1.cdaa9d778c453p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1.effe82p-8 -0x7.57d1d8p-12 : -0x1.cdaa9d778c452p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1.effe82p-8 -0x7.57d1d8p-12 : -0x1.cdaa9d778c452p+0 : inexact-ok
+= atan2 upward dbl-64 -0x1.effe82p-8 -0x7.57d1d8p-12 : -0x1.cdaa9d778c452p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe82p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d778c4525cp+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe82p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d778c4525bep+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe82p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d778c4525bep+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe82p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d778c4525bep+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d778c4525cp+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d778c4525bep+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d778c4525bep+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d778c4525bep+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe82p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d778c4525be29e0416fa252p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe82p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d778c4525be29e0416fa252p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe82p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d778c4525be29e0416fa251p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe82p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d778c4525be29e0416fa251p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe82p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d778c4525be29e0416fa28p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe82p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d778c4525be29e0416fa28p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe82p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d778c4525be29e0416fa2p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe82p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d778c4525be29e0416fa2p+0L : inexact-ok
+= atan2 downward flt-32 -0x1.effe82p-8f -0x7.57d1ep-12f : -0x1.cdaa9ep+0f : inexact-ok
+= atan2 tonearest flt-32 -0x1.effe82p-8f -0x7.57d1ep-12f : -0x1.cdaa9ep+0f : inexact-ok
+= atan2 towardzero flt-32 -0x1.effe82p-8f -0x7.57d1ep-12f : -0x1.cdaa9cp+0f : inexact-ok
+= atan2 upward flt-32 -0x1.effe82p-8f -0x7.57d1ep-12f : -0x1.cdaa9cp+0f : inexact-ok
+= atan2 downward dbl-64 -0x1.effe82p-8 -0x7.57d1ep-12 : -0x1.cdaa9db61a6ebp+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1.effe82p-8 -0x7.57d1ep-12 : -0x1.cdaa9db61a6ebp+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1.effe82p-8 -0x7.57d1ep-12 : -0x1.cdaa9db61a6eap+0 : inexact-ok
+= atan2 upward dbl-64 -0x1.effe82p-8 -0x7.57d1ep-12 : -0x1.cdaa9db61a6eap+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe82p-8L -0x7.57d1ep-12L : -0x1.cdaa9db61a6ead0ep+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe82p-8L -0x7.57d1ep-12L : -0x1.cdaa9db61a6ead0cp+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe82p-8L -0x7.57d1ep-12L : -0x1.cdaa9db61a6ead0cp+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe82p-8L -0x7.57d1ep-12L : -0x1.cdaa9db61a6ead0cp+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1ep-12L : -0x1.cdaa9db61a6ead0ep+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1ep-12L : -0x1.cdaa9db61a6ead0cp+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1ep-12L : -0x1.cdaa9db61a6ead0cp+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1ep-12L : -0x1.cdaa9db61a6ead0cp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe82p-8L -0x7.57d1ep-12L : -0x1.cdaa9db61a6ead0c075aa78c1d4ep+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe82p-8L -0x7.57d1ep-12L : -0x1.cdaa9db61a6ead0c075aa78c1d4dp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe82p-8L -0x7.57d1ep-12L : -0x1.cdaa9db61a6ead0c075aa78c1d4dp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe82p-8L -0x7.57d1ep-12L : -0x1.cdaa9db61a6ead0c075aa78c1d4dp+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe82p-8L -0x7.57d1ep-12L : -0x1.cdaa9db61a6ead0c075aa78c1d8p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe82p-8L -0x7.57d1ep-12L : -0x1.cdaa9db61a6ead0c075aa78c1d8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe82p-8L -0x7.57d1ep-12L : -0x1.cdaa9db61a6ead0c075aa78c1dp+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe82p-8L -0x7.57d1ep-12L : -0x1.cdaa9db61a6ead0c075aa78c1dp+0L : inexact-ok
+= atan2 downward dbl-64 -0x1.effe82p-8 -0x7.57d1de0e51244p-12 : -0x1.cdaa9da6e6d79p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1.effe82p-8 -0x7.57d1de0e51244p-12 : -0x1.cdaa9da6e6d79p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1.effe82p-8 -0x7.57d1de0e51244p-12 : -0x1.cdaa9da6e6d78p+0 : inexact-ok
+= atan2 upward dbl-64 -0x1.effe82p-8 -0x7.57d1de0e51244p-12 : -0x1.cdaa9da6e6d78p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe82p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da6e6d78f6ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe82p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da6e6d78f68p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe82p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da6e6d78f68p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe82p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da6e6d78f68p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da6e6d78f6ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da6e6d78f68p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da6e6d78f68p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da6e6d78f68p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da6e6d78f68821ef0a0a971p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da6e6d78f68821ef0a0a971p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da6e6d78f68821ef0a0a97p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da6e6d78f68821ef0a0a97p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da6e6d78f68821ef0a0a98p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da6e6d78f68821ef0a0a98p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da6e6d78f68821ef0a0a9p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da6e6d78f68821ef0a0a9p+0L : inexact-ok
+= atan2 downward dbl-64 -0x1.effe82p-8 -0x7.57d1de0e51248p-12 : -0x1.cdaa9da6e6d7ap+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1.effe82p-8 -0x7.57d1de0e51248p-12 : -0x1.cdaa9da6e6d79p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1.effe82p-8 -0x7.57d1de0e51248p-12 : -0x1.cdaa9da6e6d79p+0 : inexact-ok
+= atan2 upward dbl-64 -0x1.effe82p-8 -0x7.57d1de0e51248p-12 : -0x1.cdaa9da6e6d79p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe82p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da6e6d7915ep+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe82p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da6e6d7915cp+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe82p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da6e6d7915cp+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe82p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da6e6d7915cp+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da6e6d7915ep+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da6e6d7915cp+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da6e6d7915cp+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da6e6d7915cp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da6e6d7915cf36b1c2c2c89p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da6e6d7915cf36b1c2c2c89p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da6e6d7915cf36b1c2c2c88p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da6e6d7915cf36b1c2c2c88p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da6e6d7915cf36b1c2c2dp+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da6e6d7915cf36b1c2c2c8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da6e6d7915cf36b1c2c2c8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da6e6d7915cf36b1c2c2c8p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe82p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da6e6d79094p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe82p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da6e6d79094p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe82p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da6e6d79092p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe82p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da6e6d79092p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da6e6d79094p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da6e6d79094p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da6e6d79092p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da6e6d79092p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da6e6d7909399d576a70acbp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da6e6d7909399d576a70acap+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da6e6d7909399d576a70acap+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da6e6d7909399d576a70acap+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da6e6d7909399d576a70bp+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da6e6d7909399d576a70bp+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da6e6d7909399d576a70a8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da6e6d7909399d576a70a8p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe82p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da6e6d79094p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe82p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da6e6d79094p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe82p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da6e6d79092p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe82p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da6e6d79092p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da6e6d79094p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da6e6d79094p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da6e6d79092p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe82p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da6e6d79092p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da6e6d79093d863a02c7c3bp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da6e6d79093d863a02c7c3bp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da6e6d79093d863a02c7c3ap+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da6e6d79093d863a02c7c3ap+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da6e6d79093d863a02c7c8p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da6e6d79093d863a02c7cp+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da6e6d79093d863a02c7cp+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da6e6d79093d863a02c7cp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da6e6d79093a011b3726a46p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da6e6d79093a011b3726a45p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da6e6d79093a011b3726a45p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da6e6d79093a011b3726a45p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da6e6d79093a011b3726a46p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da6e6d79093a011b3726a45p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da6e6d79093a011b3726a45p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da6e6d79093a011b3726a45p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da6e6d79093a011b3726a44p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da6e6d79093a011b3726a44p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da6e6d79093a011b3726a43p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da6e6d79093a011b3726a43p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da6e6d79093a011b3726a8p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da6e6d79093a011b3726a8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da6e6d79093a011b3726ap+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da6e6d79093a011b3726ap+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da6e6d79093a011b3726a54p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da6e6d79093a011b3726a53p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da6e6d79093a011b3726a53p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da6e6d79093a011b3726a53p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da6e6d79093a011b3726a8p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da6e6d79093a011b3726a8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da6e6d79093a011b3726ap+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe82p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da6e6d79093a011b3726ap+0L : inexact-ok
+= atan2 downward dbl-64 -0x1.effe81f852716p-8 -0x7.57d1d8p-12 : -0x1.cdaa9d786fcfbp+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1.effe81f852716p-8 -0x7.57d1d8p-12 : -0x1.cdaa9d786fcfap+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1.effe81f852716p-8 -0x7.57d1d8p-12 : -0x1.cdaa9d786fcfap+0 : inexact-ok
+= atan2 upward dbl-64 -0x1.effe81f852716p-8 -0x7.57d1d8p-12 : -0x1.cdaa9d786fcfap+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa2bp+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa2bp+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa2aep+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa2aep+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa2bp+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa2bp+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa2aep+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa2aep+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa2afd2e41f4d8586p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa2afd2e41f4d8586p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa2afd2e41f4d8585p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa2afd2e41f4d8585p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa2afd2e41f4d86p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa2afd2e41f4d858p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa2afd2e41f4d858p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa2afd2e41f4d858p+0L : inexact-ok
+= atan2 downward dbl-64 -0x1.effe81f852716p-8 -0x7.57d1ep-12 : -0x1.cdaa9db6fdf93p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1.effe81f852716p-8 -0x7.57d1ep-12 : -0x1.cdaa9db6fdf93p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1.effe81f852716p-8 -0x7.57d1ep-12 : -0x1.cdaa9db6fdf92p+0 : inexact-ok
+= atan2 upward dbl-64 -0x1.effe81f852716p-8 -0x7.57d1ep-12 : -0x1.cdaa9db6fdf92p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92adcp+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92adcp+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92adap+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92adap+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92adcp+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92adcp+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92adap+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92adap+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92adb3efd640a23eep+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92adb3efd640a23edp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92adb3efd640a23edp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92adb3efd640a23edp+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92adb3efd640a24p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92adb3efd640a24p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92adb3efd640a238p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92adb3efd640a238p+0L : inexact-ok
+= atan2 downward dbl-64 -0x1.effe81f852716p-8 -0x7.57d1de0e51244p-12 : -0x1.cdaa9da7ca621p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1.effe81f852716p-8 -0x7.57d1de0e51244p-12 : -0x1.cdaa9da7ca621p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1.effe81f852716p-8 -0x7.57d1de0e51244p-12 : -0x1.cdaa9da7ca62p+0 : inexact-ok
+= atan2 upward dbl-64 -0x1.effe81f852716p-8 -0x7.57d1de0e51244p-12 : -0x1.cdaa9da7ca62p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620d02p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620d02p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620dp+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620dp+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620d02p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620d02p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620dp+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620dp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620d01e29ac2cea0eep+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620d01e29ac2cea0eep+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620d01e29ac2cea0edp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620d01e29ac2cea0edp+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620d01e29ac2cea1p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620d01e29ac2cea1p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620d01e29ac2cea08p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620d01e29ac2cea08p+0L : inexact-ok
+= atan2 downward dbl-64 -0x1.effe81f852716p-8 -0x7.57d1de0e51248p-12 : -0x1.cdaa9da7ca621p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1.effe81f852716p-8 -0x7.57d1de0e51248p-12 : -0x1.cdaa9da7ca621p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1.effe81f852716p-8 -0x7.57d1de0e51248p-12 : -0x1.cdaa9da7ca62p+0 : inexact-ok
+= atan2 upward dbl-64 -0x1.effe81f852716p-8 -0x7.57d1de0e51248p-12 : -0x1.cdaa9da7ca62p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620ef8p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620ef6p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620ef6p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620ef6p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620ef8p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620ef6p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620ef6p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620ef6p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620ef653e6f54698fcp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620ef653e6f54698fcp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620ef653e6f54698fbp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620ef653e6f54698fbp+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620ef653e6f54699p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620ef653e6f54699p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620ef653e6f546988p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620ef653e6f546988p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620e2ep+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620e2cp+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620e2cp+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620e2cp+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620e2ep+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620e2cp+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620e2cp+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620e2cp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620e2cfa514cf8542fp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620e2cfa514cf8542fp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620e2cfa514cf8542ep+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620e2cfa514cf8542ep+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620e2cfa514cf8548p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620e2cfa514cf854p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620e2cfa514cf854p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620e2cfa514cf854p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620e2ep+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620e2ep+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620e2cp+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620e2cp+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620e2ep+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620e2ep+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620e2cp+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620e2cp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620e2d38df767ea32ep+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620e2d38df767ea32ep+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620e2d38df767ea32dp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620e2d38df767ea32dp+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620e2d38df767ea38p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620e2d38df767ea3p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620e2d38df767ea3p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620e2d38df767ea3p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620e2d008d89c3c9cp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620e2d008d89c3c9bfp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620e2d008d89c3c9bfp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620e2d008d89c3c9bfp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620e2d008d89c3c9cp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620e2d008d89c3c9bfp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620e2d008d89c3c9bfp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620e2d008d89c3c9bfp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620e2d008d89c3c9bep+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620e2d008d89c3c9bdp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620e2d008d89c3c9bdp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620e2d008d89c3c9bdp+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620e2d008d89c3cap+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620e2d008d89c3c98p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620e2d008d89c3c98p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620e2d008d89c3c98p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620e2d008d89c3c9cdp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620e2d008d89c3c9cdp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620e2d008d89c3c9ccp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620e2d008d89c3c9ccp+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620e2d008d89c3cap+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620e2d008d89c3cap+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620e2d008d89c3c98p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620e2d008d89c3c98p+0L : inexact-ok
+= atan2 downward dbl-64 -0x1.effe81f852717p-8 -0x7.57d1d8p-12 : -0x1.cdaa9d786fcfbp+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1.effe81f852717p-8 -0x7.57d1d8p-12 : -0x1.cdaa9d786fcfap+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1.effe81f852717p-8 -0x7.57d1d8p-12 : -0x1.cdaa9d786fcfap+0 : inexact-ok
+= atan2 upward dbl-64 -0x1.effe81f852717p-8 -0x7.57d1d8p-12 : -0x1.cdaa9d786fcfap+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d6p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d6p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d4p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d4p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d6p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d6p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d4p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d4p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d5a76cce52e85cp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d5a76cce52e85bp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d5a76cce52e85bp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d5a76cce52e85bp+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d5a76cce52e88p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d5a76cce52e88p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d5a76cce52e8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d5a76cce52e8p+0L : inexact-ok
+= atan2 downward dbl-64 -0x1.effe81f852717p-8 -0x7.57d1ep-12 : -0x1.cdaa9db6fdf93p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1.effe81f852717p-8 -0x7.57d1ep-12 : -0x1.cdaa9db6fdf93p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1.effe81f852717p-8 -0x7.57d1ep-12 : -0x1.cdaa9db6fdf92p+0 : inexact-ok
+= atan2 upward dbl-64 -0x1.effe81f852717p-8 -0x7.57d1ep-12 : -0x1.cdaa9db6fdf92p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92902p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92902p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92902p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92902p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929011384455c4cc6p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929011384455c4cc5p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929011384455c4cc5p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929011384455c4cc5p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929011384455c4dp+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929011384455c4dp+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929011384455c4c8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929011384455c4c8p+0L : inexact-ok
+= atan2 downward dbl-64 -0x1.effe81f852717p-8 -0x7.57d1de0e51244p-12 : -0x1.cdaa9da7ca621p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1.effe81f852717p-8 -0x7.57d1de0e51244p-12 : -0x1.cdaa9da7ca621p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1.effe81f852717p-8 -0x7.57d1de0e51244p-12 : -0x1.cdaa9da7ca62p+0 : inexact-ok
+= atan2 upward dbl-64 -0x1.effe81f852717p-8 -0x7.57d1de0e51244p-12 : -0x1.cdaa9da7ca62p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b28p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b28p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b26p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b26p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b28p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b28p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b26p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b26p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b27b722145353aep+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b27b722145353aep+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b27b722145353adp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b27b722145353adp+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b27b722145354p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b27b7221453538p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b27b7221453538p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b27b7221453538p+0L : inexact-ok
+= atan2 downward dbl-64 -0x1.effe81f852717p-8 -0x7.57d1de0e51248p-12 : -0x1.cdaa9da7ca621p+0 : inexact-ok
+= atan2 tonearest dbl-64 -0x1.effe81f852717p-8 -0x7.57d1de0e51248p-12 : -0x1.cdaa9da7ca621p+0 : inexact-ok
+= atan2 towardzero dbl-64 -0x1.effe81f852717p-8 -0x7.57d1de0e51248p-12 : -0x1.cdaa9da7ca62p+0 : inexact-ok
+= atan2 upward dbl-64 -0x1.effe81f852717p-8 -0x7.57d1de0e51248p-12 : -0x1.cdaa9da7ca62p+0 : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1ep+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1ep+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c286e46cb4baep+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c286e46cb4badp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c286e46cb4badp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c286e46cb4badp+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c286e46cb4cp+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c286e46cb4b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c286e46cb4b8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c286e46cb4b8p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52ced89e7d06e6p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52ced89e7d06e6p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52ced89e7d06e5p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52ced89e7d06e5p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52ced89e7d07p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52ced89e7d07p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52ced89e7d068p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52ced89e7d068p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852717p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852717p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c530d66c80355e5p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c530d66c80355e5p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c530d66c80355e4p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c530d66c80355e4p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c530d66c80356p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c530d66c80356p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c530d66c803558p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c530d66c803558p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c52d514db487c77p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c52d514db487c76p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c52d514db487c76p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c52d514db487c76p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c52d514db487c77p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c52d514db487c76p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c52d514db487c76p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c52d514db487c76p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c52d514db487c75p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c52d514db487c74p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c52d514db487c74p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c52d514db487c74p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c52d514db487c8p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c52d514db487c8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c52d514db487cp+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c52d514db487cp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c52d514db487c84p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c52d514db487c84p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c52d514db487c83p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c52d514db487c83p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c52d514db487dp+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c52d514db487c8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c52d514db487c8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852717p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c52d514db487c8p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d8p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d6p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d6p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d6p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d8p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d6p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d6p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d6p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61df7ac272703p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61df7ac272702p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61df7ac272702p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61df7ac272702p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61df7ac27278p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61df7ac2727p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61df7ac2727p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61df7ac2727p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92902p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92902p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92902p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92902p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929018a0f23a3f83bp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929018a0f23a3f83bp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929018a0f23a3f83ap+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929018a0f23a3f83ap+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929018a0f23a3f88p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929018a0f23a3f8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929018a0f23a3f8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929018a0f23a3f8p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b2ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b28p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b28p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b28p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b2ap+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b28p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b28p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b28p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282dacf27ef281p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282dacf27ef281p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282dacf27ef28p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282dacf27ef28p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282dacf27ef3p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282dacf27ef28p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282dacf27ef28p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282dacf27ef28p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1ep+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1ep+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9ef924f6ea81p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9ef924f6ea8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9ef924f6ea8p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9ef924f6ea8p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9ef924f6ebp+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9ef924f6ea8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9ef924f6ea8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9ef924f6ea8p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c5345637ca8a5b9p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c5345637ca8a5b9p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c5345637ca8a5b8p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c5345637ca8a5b8p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c5345637ca8a6p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c5345637ca8a58p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c5345637ca8a58p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c5345637ca8a58p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c5383f1a62ef4b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c5383f1a62ef4b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c5383f1a62ef4b7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c5383f1a62ef4b7p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c5383f1a62ef5p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c5383f1a62ef48p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c5383f1a62ef48p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c5383f1a62ef48p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c534b9fb9741b4ap+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c534b9fb9741b49p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c534b9fb9741b49p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c534b9fb9741b49p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c534b9fb9741b4ap+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c534b9fb9741b49p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c534b9fb9741b49p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c534b9fb9741b49p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c534b9fb9741b48p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c534b9fb9741b48p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c534b9fb9741b47p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c534b9fb9741b47p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c534b9fb9741b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c534b9fb9741b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c534b9fb9741bp+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c534b9fb9741bp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c534b9fb9741b58p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c534b9fb9741b57p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c534b9fb9741b57p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c534b9fb9741b57p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c534b9fb9741b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c534b9fb9741b8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c534b9fb9741bp+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffcp-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c534b9fb9741bp+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d6p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d6p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d4p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d4p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d6p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d6p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d4p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d4p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d5e2b23d3d07afp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d5e2b23d3d07afp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d5e2b23d3d07aep+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d5e2b23d3d07aep+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d5e2b23d3d08p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d5e2b23d3d078p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d5e2b23d3d078p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d5e2b23d3d078p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92902p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92902p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92902p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92902p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929014ec9b4802281p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929014ec9b480228p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929014ec9b480228p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929014ec9b480228p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929014ec9b48023p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929014ec9b480228p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929014ec9b480228p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf929014ec9b480228p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b28p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b28p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b26p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b26p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b28p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b28p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b26p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b26p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b27f26783692318p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b27f26783692317p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b27f26783692317p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b27f26783692317p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b27f2678369238p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b27f267836923p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b27f267836923p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b27f267836923p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1ep+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1ep+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1cp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c63b3b5e11b17p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c63b3b5e11b17p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c63b3b5e11b16p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c63b3b5e11b16p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c63b3b5e11b8p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c63b3b5e11bp+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c63b3b5e11bp+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c63b3b5e11bp+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c530a1e0d92d65p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c530a1e0d92d64fp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c530a1e0d92d64fp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c530a1e0d92d64fp+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c530a1e0d92d68p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c530a1e0d92d68p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c530a1e0d92d6p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c530a1e0d92d6p+0L : inexact-ok
+= atan2 downward ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 tonearest ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 towardzero ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 upward ldbl-96-intel -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 downward ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 tonearest ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c54p+0L : inexact-ok
+= atan2 towardzero ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 upward ldbl-96-m68k -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c52p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c5348ac3719254fp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c5348ac3719254ep+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c5348ac3719254ep+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c5348ac3719254ep+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c5348ac3719258p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c5348ac3719258p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c5348ac371925p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c5348ac371925p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c53105a4a5e4bep+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c53105a4a5e4bep+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c53105a4a5e4bdfp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c53105a4a5e4bdfp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c53105a4a5e4bep+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c53105a4a5e4bep+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c53105a4a5e4bdfp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c53105a4a5e4bdfp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c53105a4a5e4bdep+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c53105a4a5e4bdep+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c53105a4a5e4bddp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c53105a4a5e4bddp+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c53105a4a5e4cp+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c53105a4a5e4cp+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c53105a4a5e4b8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c53105a4a5e4b8p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c53105a4a5e4beep+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c53105a4a5e4beep+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c53105a4a5e4bedp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c53105a4a5e4bedp+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c53105a4a5e4cp+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c53105a4a5e4cp+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c53105a4a5e4b8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffep-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c53105a4a5e4b8p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac76549p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac76548p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac76548p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac76548p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e92p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e91p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e91p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e91p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de3cp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de3cp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de3bfp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de3bfp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dbcp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dbbfp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dbbfp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dbbfp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4796f8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4796f8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4796f7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4796f7p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde5f7p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde5f7p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde5f6p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde5f6p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c5349dbe8130c89p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c5349dbe8130c88p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c5349dbe8130c88p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c5349dbe8130c88p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c5349dbe8130c89p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c5349dbe8130c88p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c5349dbe8130c88p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c5349dbe8130c88p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c87p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c87p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c86p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c86p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c97p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c96p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c96p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac291p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c96p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac76549p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac76548p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac76548p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac76548p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e92p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e91p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e91p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e91p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de3cp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de3cp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de3bfp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de3bfp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dbcp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dbbfp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dbbfp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dbbfp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4796f8p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4796f8p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4796f7p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4796f7p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde5f7p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde5f7p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde5f6p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde5f6p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c5349dbe8130c89p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c5349dbe8130c88p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c5349dbe8130c88p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c5349dbe8130c88p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c5349dbe8130c89p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c5349dbe8130c88p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c5349dbe8130c88p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c5349dbe8130c88p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c87p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c87p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c86p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c86p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c97p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c96p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c96p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac292p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c96p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac7654bp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac7654ap+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac7654ap+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac7654ap+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac7658p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac7658p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac765p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac765p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e94p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e93p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e93p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e93p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427fp+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e8p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de3c2p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de3c2p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de3c1p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de3c1p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de4p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de4p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de38p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de38p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dbc2p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dbc1p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dbc1p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dbc1p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dcp+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dcp+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395db8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395db8p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4796fap+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4796fap+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4796f9p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4796f9p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4797p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4797p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab47968p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab47968p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde5f9p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde5f9p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde5f8p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde5f8p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde6p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde6p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde58p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde58p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c5349dbe8130c8bp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c5349dbe8130c8ap+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c5349dbe8130c8ap+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c5349dbe8130c8ap+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c5349dbe8130c8bp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c5349dbe8130c8ap+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c5349dbe8130c8ap+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c5349dbe8130c8ap+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c89p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c89p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c88p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c88p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130dp+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c8p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c99p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c98p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c98p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c98p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130dp+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac28p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c8p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac7653cp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac7653cp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac7653bp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac7653bp+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac7658p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac765p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac765p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1d8p-12L : -0x1.cdaa9d786fcfa0d61c33dac765p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e85p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e85p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e84p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e84p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427fp+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1ep-12L : -0x1.cdaa9db6fdf92901884b52427e8p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de3b4p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de3b3p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de3b3p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de3b3p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de4p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de38p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de38p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51244p-12L : -0x1.cdaa9da7ca620b282be9211de38p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dbb3p+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dbb3p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dbb2p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dbb2p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395dcp+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395db8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395db8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51248p-12L : -0x1.cdaa9da7ca620d1c9d355395db8p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4796ecp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4796ebp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4796ebp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4796ebp+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4797p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab4797p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab47968p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e5124664p-12L : -0x1.cdaa9da7ca620c53439fab47968p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde5ebp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde5eap+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde5eap+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde5eap+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde6p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde6p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde58p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246648p-12L : -0x1.cdaa9da7ca620c53822dd4cde58p+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c5349dbe8130c7cp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c5349dbe8130c7cp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c5349dbe8130c7bp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca4838p-12L : -0x1.cdaa9da7ca620c5349dbe8130c7bp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c5349dbe8130c7cp+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c5349dbe8130c7cp+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c5349dbe8130c7bp+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca483cp-12L : -0x1.cdaa9da7ca620c5349dbe8130c7bp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c7ap+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c7ap+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c79p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c79p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c8p+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130c8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130cp+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca48p-12L : -0x1.cdaa9da7ca620c5349dbe8130cp+0L : inexact-ok
+= atan2 downward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c8ap+0L : inexact-ok
+= atan2 tonearest ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c89p+0L : inexact-ok
+= atan2 towardzero ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c89p+0L : inexact-ok
+= atan2 upward ldbl-128 -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c89p+0L : inexact-ok
+= atan2 downward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130dp+0L : inexact-ok
+= atan2 tonearest ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c8p+0L : inexact-ok
+= atan2 towardzero ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c8p+0L : inexact-ok
+= atan2 upward ldbl-128ibm -0x1.effe81f852716ffc0f3eeb1ac3p-8L -0x7.57d1de0e51246640cc2340ca4ap-12L : -0x1.cdaa9da7ca620c5349dbe8130c8p+0L : inexact-ok
+atan2 0x1.00000000000001p0 0x1.00000000000001p0
+= atan2 downward flt-32 0x1.000002p+0f 0x1.000002p+0f : 0xc.90fdap-4f : inexact-ok
+= atan2 tonearest flt-32 0x1.000002p+0f 0x1.000002p+0f : 0xc.90fdbp-4f : inexact-ok
+= atan2 towardzero flt-32 0x1.000002p+0f 0x1.000002p+0f : 0xc.90fdap-4f : inexact-ok
+= atan2 upward flt-32 0x1.000002p+0f 0x1.000002p+0f : 0xc.90fdbp-4f : inexact-ok
+= atan2 downward dbl-64 0x1.000002p+0 0x1.000002p+0 : 0xc.90fdaa22168cp-4 : inexact-ok
+= atan2 tonearest dbl-64 0x1.000002p+0 0x1.000002p+0 : 0xc.90fdaa22168cp-4 : inexact-ok
+= atan2 towardzero dbl-64 0x1.000002p+0 0x1.000002p+0 : 0xc.90fdaa22168cp-4 : inexact-ok
+= atan2 upward dbl-64 0x1.000002p+0 0x1.000002p+0 : 0xc.90fdaa22168c8p-4 : inexact-ok
+= atan2 downward ldbl-96-intel 0x1.000002p+0L 0x1.000002p+0L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1.000002p+0L 0x1.000002p+0L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1.000002p+0L 0x1.000002p+0L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1.000002p+0L 0x1.000002p+0L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1.000002p+0L 0x1.000002p+0L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1.000002p+0L 0x1.000002p+0L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1.000002p+0L 0x1.000002p+0L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1.000002p+0L 0x1.000002p+0L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 downward ldbl-128 0x1.000002p+0L 0x1.000002p+0L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 tonearest ldbl-128 0x1.000002p+0L 0x1.000002p+0L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 towardzero ldbl-128 0x1.000002p+0L 0x1.000002p+0L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 upward ldbl-128 0x1.000002p+0L 0x1.000002p+0L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1.000002p+0L 0x1.000002p+0L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1.000002p+0L 0x1.000002p+0L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1.000002p+0L 0x1.000002p+0L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1.000002p+0L 0x1.000002p+0L : 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok
+= atan2 downward flt-32 0x1.000002p+0f 0x1p+0f : 0xc.90fdbp-4f : inexact-ok
+= atan2 tonearest flt-32 0x1.000002p+0f 0x1p+0f : 0xc.90fdcp-4f : inexact-ok
+= atan2 towardzero flt-32 0x1.000002p+0f 0x1p+0f : 0xc.90fdbp-4f : inexact-ok
+= atan2 upward flt-32 0x1.000002p+0f 0x1p+0f : 0xc.90fdcp-4f : inexact-ok
+= atan2 downward dbl-64 0x1.000002p+0 0x1p+0 : 0xc.90fdba22167cp-4 : inexact-ok
+= atan2 tonearest dbl-64 0x1.000002p+0 0x1p+0 : 0xc.90fdba22167cp-4 : inexact-ok
+= atan2 towardzero dbl-64 0x1.000002p+0 0x1p+0 : 0xc.90fdba22167cp-4 : inexact-ok
+= atan2 upward dbl-64 0x1.000002p+0 0x1p+0 : 0xc.90fdba22167c8p-4 : inexact-ok
+= atan2 downward ldbl-96-intel 0x1.000002p+0L 0x1p+0L : 0xc.90fdba22167c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1.000002p+0L 0x1p+0L : 0xc.90fdba22167c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1.000002p+0L 0x1p+0L : 0xc.90fdba22167c234p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1.000002p+0L 0x1p+0L : 0xc.90fdba22167c235p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1.000002p+0L 0x1p+0L : 0xc.90fdba22167c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1.000002p+0L 0x1p+0L : 0xc.90fdba22167c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1.000002p+0L 0x1p+0L : 0xc.90fdba22167c234p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1.000002p+0L 0x1p+0L : 0xc.90fdba22167c235p-4L : inexact-ok
+= atan2 downward ldbl-128 0x1.000002p+0L 0x1p+0L : 0xc.90fdba22167c234c5710d362b868p-4L : inexact-ok
+= atan2 tonearest ldbl-128 0x1.000002p+0L 0x1p+0L : 0xc.90fdba22167c234c5710d362b87p-4L : inexact-ok
+= atan2 towardzero ldbl-128 0x1.000002p+0L 0x1p+0L : 0xc.90fdba22167c234c5710d362b868p-4L : inexact-ok
+= atan2 upward ldbl-128 0x1.000002p+0L 0x1p+0L : 0xc.90fdba22167c234c5710d362b87p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1.000002p+0L 0x1p+0L : 0xc.90fdba22167c234c5710d362b8p-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1.000002p+0L 0x1p+0L : 0xc.90fdba22167c234c5710d362b8p-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1.000002p+0L 0x1p+0L : 0xc.90fdba22167c234c5710d362b8p-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1.000002p+0L 0x1p+0L : 0xc.90fdba22167c234c5710d362bcp-4L : inexact-ok
+= atan2 downward dbl-64 0x1.000002p+0 0x1.0000000000001p+0 : 0xc.90fdba22167b8p-4 : inexact-ok
+= atan2 tonearest dbl-64 0x1.000002p+0 0x1.0000000000001p+0 : 0xc.90fdba22167b8p-4 : inexact-ok
+= atan2 towardzero dbl-64 0x1.000002p+0 0x1.0000000000001p+0 : 0xc.90fdba22167b8p-4 : inexact-ok
+= atan2 upward dbl-64 0x1.000002p+0 0x1.0000000000001p+0 : 0xc.90fdba22167cp-4 : inexact-ok
+= atan2 downward ldbl-96-intel 0x1.000002p+0L 0x1.0000000000001p+0L : 0xc.90fdba22167ba34p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1.000002p+0L 0x1.0000000000001p+0L : 0xc.90fdba22167ba35p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1.000002p+0L 0x1.0000000000001p+0L : 0xc.90fdba22167ba34p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1.000002p+0L 0x1.0000000000001p+0L : 0xc.90fdba22167ba35p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1.000002p+0L 0x1.0000000000001p+0L : 0xc.90fdba22167ba34p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1.000002p+0L 0x1.0000000000001p+0L : 0xc.90fdba22167ba35p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1.000002p+0L 0x1.0000000000001p+0L : 0xc.90fdba22167ba34p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1.000002p+0L 0x1.0000000000001p+0L : 0xc.90fdba22167ba35p-4L : inexact-ok
+= atan2 downward ldbl-128 0x1.000002p+0L 0x1.0000000000001p+0L : 0xc.90fdba22167ba34c5710d363bc68p-4L : inexact-ok
+= atan2 tonearest ldbl-128 0x1.000002p+0L 0x1.0000000000001p+0L : 0xc.90fdba22167ba34c5710d363bc7p-4L : inexact-ok
+= atan2 towardzero ldbl-128 0x1.000002p+0L 0x1.0000000000001p+0L : 0xc.90fdba22167ba34c5710d363bc68p-4L : inexact-ok
+= atan2 upward ldbl-128 0x1.000002p+0L 0x1.0000000000001p+0L : 0xc.90fdba22167ba34c5710d363bc7p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1.000002p+0L 0x1.0000000000001p+0L : 0xc.90fdba22167ba34c5710d363bcp-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1.000002p+0L 0x1.0000000000001p+0L : 0xc.90fdba22167ba34c5710d363bcp-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1.000002p+0L 0x1.0000000000001p+0L : 0xc.90fdba22167ba34c5710d363bcp-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1.000002p+0L 0x1.0000000000001p+0L : 0xc.90fdba22167ba34c5710d363cp-4L : inexact-ok
+= atan2 downward ldbl-96-intel 0x1.000002p+0L 0x1.00000000000001p+0L : 0xc.90fdba22167c1b4p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1.000002p+0L 0x1.00000000000001p+0L : 0xc.90fdba22167c1b5p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1.000002p+0L 0x1.00000000000001p+0L : 0xc.90fdba22167c1b4p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1.000002p+0L 0x1.00000000000001p+0L : 0xc.90fdba22167c1b5p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1.000002p+0L 0x1.00000000000001p+0L : 0xc.90fdba22167c1b4p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1.000002p+0L 0x1.00000000000001p+0L : 0xc.90fdba22167c1b5p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1.000002p+0L 0x1.00000000000001p+0L : 0xc.90fdba22167c1b4p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1.000002p+0L 0x1.00000000000001p+0L : 0xc.90fdba22167c1b5p-4L : inexact-ok
+= atan2 downward ldbl-128 0x1.000002p+0L 0x1.00000000000001p+0L : 0xc.90fdba22167c1b4c5710d362c87p-4L : inexact-ok
+= atan2 tonearest ldbl-128 0x1.000002p+0L 0x1.00000000000001p+0L : 0xc.90fdba22167c1b4c5710d362c87p-4L : inexact-ok
+= atan2 towardzero ldbl-128 0x1.000002p+0L 0x1.00000000000001p+0L : 0xc.90fdba22167c1b4c5710d362c87p-4L : inexact-ok
+= atan2 upward ldbl-128 0x1.000002p+0L 0x1.00000000000001p+0L : 0xc.90fdba22167c1b4c5710d362c878p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1.000002p+0L 0x1.00000000000001p+0L : 0xc.90fdba22167c1b4c5710d362c8p-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1.000002p+0L 0x1.00000000000001p+0L : 0xc.90fdba22167c1b4c5710d362c8p-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1.000002p+0L 0x1.00000000000001p+0L : 0xc.90fdba22167c1b4c5710d362c8p-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1.000002p+0L 0x1.00000000000001p+0L : 0xc.90fdba22167c1b4c5710d362ccp-4L : inexact-ok
+= atan2 downward flt-32 0x1p+0f 0x1.000002p+0f : 0xc.90fd9p-4f : inexact-ok
+= atan2 tonearest flt-32 0x1p+0f 0x1.000002p+0f : 0xc.90fdap-4f : inexact-ok
+= atan2 towardzero flt-32 0x1p+0f 0x1.000002p+0f : 0xc.90fd9p-4f : inexact-ok
+= atan2 upward flt-32 0x1p+0f 0x1.000002p+0f : 0xc.90fdap-4f : inexact-ok
+= atan2 downward dbl-64 0x1p+0 0x1.000002p+0 : 0xc.90fd9a22169cp-4 : inexact-ok
+= atan2 tonearest dbl-64 0x1p+0 0x1.000002p+0 : 0xc.90fd9a22169cp-4 : inexact-ok
+= atan2 towardzero dbl-64 0x1p+0 0x1.000002p+0 : 0xc.90fd9a22169cp-4 : inexact-ok
+= atan2 upward dbl-64 0x1p+0 0x1.000002p+0 : 0xc.90fd9a22169c8p-4 : inexact-ok
+= atan2 downward ldbl-96-intel 0x1p+0L 0x1.000002p+0L : 0xc.90fd9a22169c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1p+0L 0x1.000002p+0L : 0xc.90fd9a22169c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1p+0L 0x1.000002p+0L : 0xc.90fd9a22169c234p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1p+0L 0x1.000002p+0L : 0xc.90fd9a22169c235p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1p+0L 0x1.000002p+0L : 0xc.90fd9a22169c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1p+0L 0x1.000002p+0L : 0xc.90fd9a22169c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1p+0L 0x1.000002p+0L : 0xc.90fd9a22169c234p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1p+0L 0x1.000002p+0L : 0xc.90fd9a22169c235p-4L : inexact-ok
+= atan2 downward ldbl-128 0x1p+0L 0x1.000002p+0L : 0xc.90fd9a22169c234c41bb7e0d631p-4L : inexact-ok
+= atan2 tonearest ldbl-128 0x1p+0L 0x1.000002p+0L : 0xc.90fd9a22169c234c41bb7e0d6318p-4L : inexact-ok
+= atan2 towardzero ldbl-128 0x1p+0L 0x1.000002p+0L : 0xc.90fd9a22169c234c41bb7e0d631p-4L : inexact-ok
+= atan2 upward ldbl-128 0x1p+0L 0x1.000002p+0L : 0xc.90fd9a22169c234c41bb7e0d6318p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1p+0L 0x1.000002p+0L : 0xc.90fd9a22169c234c41bb7e0d6p-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1p+0L 0x1.000002p+0L : 0xc.90fd9a22169c234c41bb7e0d64p-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1p+0L 0x1.000002p+0L : 0xc.90fd9a22169c234c41bb7e0d6p-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1p+0L 0x1.000002p+0L : 0xc.90fd9a22169c234c41bb7e0d64p-4L : inexact-ok
+= atan2 downward flt-32 0x1p+0f 0x1p+0f : 0xc.90fdap-4f : inexact-ok
+= atan2 tonearest flt-32 0x1p+0f 0x1p+0f : 0xc.90fdbp-4f : inexact-ok
+= atan2 towardzero flt-32 0x1p+0f 0x1p+0f : 0xc.90fdap-4f : inexact-ok
+= atan2 upward flt-32 0x1p+0f 0x1p+0f : 0xc.90fdbp-4f : inexact-ok
+= atan2 downward dbl-64 0x1p+0 0x1p+0 : 0xc.90fdaa22168cp-4 : inexact-ok
+= atan2 tonearest dbl-64 0x1p+0 0x1p+0 : 0xc.90fdaa22168cp-4 : inexact-ok
+= atan2 towardzero dbl-64 0x1p+0 0x1p+0 : 0xc.90fdaa22168cp-4 : inexact-ok
+= atan2 upward dbl-64 0x1p+0 0x1p+0 : 0xc.90fdaa22168c8p-4 : inexact-ok
+= atan2 downward ldbl-96-intel 0x1p+0L 0x1p+0L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1p+0L 0x1p+0L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1p+0L 0x1p+0L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1p+0L 0x1p+0L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1p+0L 0x1p+0L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1p+0L 0x1p+0L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1p+0L 0x1p+0L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1p+0L 0x1p+0L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 downward ldbl-128 0x1p+0L 0x1p+0L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 tonearest ldbl-128 0x1p+0L 0x1p+0L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 towardzero ldbl-128 0x1p+0L 0x1p+0L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 upward ldbl-128 0x1p+0L 0x1p+0L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1p+0L 0x1p+0L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1p+0L 0x1p+0L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1p+0L 0x1p+0L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1p+0L 0x1p+0L : 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok
+= atan2 downward dbl-64 0x1p+0 0x1.0000000000001p+0 : 0xc.90fdaa22168b8p-4 : inexact-ok
+= atan2 tonearest dbl-64 0x1p+0 0x1.0000000000001p+0 : 0xc.90fdaa22168b8p-4 : inexact-ok
+= atan2 towardzero dbl-64 0x1p+0 0x1.0000000000001p+0 : 0xc.90fdaa22168b8p-4 : inexact-ok
+= atan2 upward dbl-64 0x1p+0 0x1.0000000000001p+0 : 0xc.90fdaa22168cp-4 : inexact-ok
+= atan2 downward ldbl-96-intel 0x1p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168ba34p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168ba35p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168ba34p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168ba35p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168ba34p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168ba35p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168ba34p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168ba35p-4L : inexact-ok
+= atan2 downward ldbl-128 0x1p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168ba34c4c6628b811cp-4L : inexact-ok
+= atan2 tonearest ldbl-128 0x1p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168ba34c4c6628b811cp-4L : inexact-ok
+= atan2 towardzero ldbl-128 0x1p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168ba34c4c6628b811cp-4L : inexact-ok
+= atan2 upward ldbl-128 0x1p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168ba34c4c6628b811c8p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168ba34c4c6628b81p-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168ba34c4c6628b81p-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168ba34c4c6628b81p-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168ba34c4c6628b814p-4L : inexact-ok
+= atan2 downward ldbl-96-intel 0x1p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c1b4p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c1b5p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c1b4p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c1b5p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c1b4p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c1b5p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c1b4p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c1b5p-4L : inexact-ok
+= atan2 downward ldbl-128 0x1p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c1b4c4c6628b80dcp-4L : inexact-ok
+= atan2 tonearest ldbl-128 0x1p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c1b4c4c6628b80dc8p-4L : inexact-ok
+= atan2 towardzero ldbl-128 0x1p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c1b4c4c6628b80dcp-4L : inexact-ok
+= atan2 upward ldbl-128 0x1p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c1b4c4c6628b80dc8p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c1b4c4c6628b80cp-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c1b4c4c6628b80cp-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c1b4c4c6628b80cp-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c1b4c4c6628b81p-4L : inexact-ok
+= atan2 downward dbl-64 0x1.0000000000001p+0 0x1.000002p+0 : 0xc.90fd9a22169c8p-4 : inexact-ok
+= atan2 tonearest dbl-64 0x1.0000000000001p+0 0x1.000002p+0 : 0xc.90fd9a22169c8p-4 : inexact-ok
+= atan2 towardzero dbl-64 0x1.0000000000001p+0 0x1.000002p+0 : 0xc.90fd9a22169c8p-4 : inexact-ok
+= atan2 upward dbl-64 0x1.0000000000001p+0 0x1.000002p+0 : 0xc.90fd9a22169dp-4 : inexact-ok
+= atan2 downward ldbl-96-intel 0x1.0000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169ca34p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169ca35p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169ca34p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1.0000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169ca35p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169ca34p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169ca35p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169ca34p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169ca35p-4L : inexact-ok
+= atan2 downward ldbl-128 0x1.0000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169ca34c41bb7e0c5f1p-4L : inexact-ok
+= atan2 tonearest ldbl-128 0x1.0000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169ca34c41bb7e0c5f18p-4L : inexact-ok
+= atan2 towardzero ldbl-128 0x1.0000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169ca34c41bb7e0c5f1p-4L : inexact-ok
+= atan2 upward ldbl-128 0x1.0000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169ca34c41bb7e0c5f18p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1.0000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169ca34c41bb7e0c5cp-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169ca34c41bb7e0c6p-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169ca34c41bb7e0c5cp-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1.0000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169ca34c41bb7e0c6p-4L : inexact-ok
+= atan2 downward dbl-64 0x1.0000000000001p+0 0x1p+0 : 0xc.90fdaa22168c8p-4 : inexact-ok
+= atan2 tonearest dbl-64 0x1.0000000000001p+0 0x1p+0 : 0xc.90fdaa22168c8p-4 : inexact-ok
+= atan2 towardzero dbl-64 0x1.0000000000001p+0 0x1p+0 : 0xc.90fdaa22168c8p-4 : inexact-ok
+= atan2 upward dbl-64 0x1.0000000000001p+0 0x1p+0 : 0xc.90fdaa22168dp-4 : inexact-ok
+= atan2 downward ldbl-96-intel 0x1.0000000000001p+0L 0x1p+0L : 0xc.90fdaa22168ca34p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x1p+0L : 0xc.90fdaa22168ca35p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x1p+0L : 0xc.90fdaa22168ca34p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1.0000000000001p+0L 0x1p+0L : 0xc.90fdaa22168ca35p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1.0000000000001p+0L 0x1p+0L : 0xc.90fdaa22168ca34p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x1p+0L : 0xc.90fdaa22168ca35p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x1p+0L : 0xc.90fdaa22168ca34p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1.0000000000001p+0L 0x1p+0L : 0xc.90fdaa22168ca35p-4L : inexact-ok
+= atan2 downward ldbl-128 0x1.0000000000001p+0L 0x1p+0L : 0xc.90fdaa22168ca34c4c6628b809cp-4L : inexact-ok
+= atan2 tonearest ldbl-128 0x1.0000000000001p+0L 0x1p+0L : 0xc.90fdaa22168ca34c4c6628b809cp-4L : inexact-ok
+= atan2 towardzero ldbl-128 0x1.0000000000001p+0L 0x1p+0L : 0xc.90fdaa22168ca34c4c6628b809cp-4L : inexact-ok
+= atan2 upward ldbl-128 0x1.0000000000001p+0L 0x1p+0L : 0xc.90fdaa22168ca34c4c6628b809c8p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1.0000000000001p+0L 0x1p+0L : 0xc.90fdaa22168ca34c4c6628b808p-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x1p+0L : 0xc.90fdaa22168ca34c4c6628b808p-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x1p+0L : 0xc.90fdaa22168ca34c4c6628b808p-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1.0000000000001p+0L 0x1p+0L : 0xc.90fdaa22168ca34c4c6628b80cp-4L : inexact-ok
+= atan2 downward dbl-64 0x1.0000000000001p+0 0x1.0000000000001p+0 : 0xc.90fdaa22168cp-4 : inexact-ok
+= atan2 tonearest dbl-64 0x1.0000000000001p+0 0x1.0000000000001p+0 : 0xc.90fdaa22168cp-4 : inexact-ok
+= atan2 towardzero dbl-64 0x1.0000000000001p+0 0x1.0000000000001p+0 : 0xc.90fdaa22168cp-4 : inexact-ok
+= atan2 upward dbl-64 0x1.0000000000001p+0 0x1.0000000000001p+0 : 0xc.90fdaa22168c8p-4 : inexact-ok
+= atan2 downward ldbl-96-intel 0x1.0000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1.0000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 downward ldbl-128 0x1.0000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 tonearest ldbl-128 0x1.0000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 towardzero ldbl-128 0x1.0000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 upward ldbl-128 0x1.0000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1.0000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1.0000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok
+= atan2 downward ldbl-96-intel 0x1.0000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c9b4p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c9b5p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c9b4p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1.0000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c9b5p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c9b4p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c9b5p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c9b4p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c9b5p-4L : inexact-ok
+= atan2 downward ldbl-128 0x1.0000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c9b4c4c6628b809cp-4L : inexact-ok
+= atan2 tonearest ldbl-128 0x1.0000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c9b4c4c6628b809c8p-4L : inexact-ok
+= atan2 towardzero ldbl-128 0x1.0000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c9b4c4c6628b809cp-4L : inexact-ok
+= atan2 upward ldbl-128 0x1.0000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c9b4c4c6628b809c8p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1.0000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c9b4c4c6628b808p-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c9b4c4c6628b808p-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c9b4c4c6628b808p-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1.0000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c9b4c4c6628b80cp-4L : inexact-ok
+= atan2 downward ldbl-96-intel 0x1.00000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169c2b4p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1.00000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169c2b5p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1.00000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169c2b4p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1.00000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169c2b5p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1.00000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169c2b4p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1.00000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169c2b5p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1.00000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169c2b4p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1.00000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169c2b5p-4L : inexact-ok
+= atan2 downward ldbl-128 0x1.00000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169c2b4c41bb7e0d531p-4L : inexact-ok
+= atan2 tonearest ldbl-128 0x1.00000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169c2b4c41bb7e0d531p-4L : inexact-ok
+= atan2 towardzero ldbl-128 0x1.00000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169c2b4c41bb7e0d531p-4L : inexact-ok
+= atan2 upward ldbl-128 0x1.00000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169c2b4c41bb7e0d5318p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1.00000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169c2b4c41bb7e0d5p-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1.00000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169c2b4c41bb7e0d54p-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1.00000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169c2b4c41bb7e0d5p-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1.00000000000001p+0L 0x1.000002p+0L : 0xc.90fd9a22169c2b4c41bb7e0d54p-4L : inexact-ok
+= atan2 downward ldbl-96-intel 0x1.00000000000001p+0L 0x1p+0L : 0xc.90fdaa22168c2b4p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1.00000000000001p+0L 0x1p+0L : 0xc.90fdaa22168c2b5p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1.00000000000001p+0L 0x1p+0L : 0xc.90fdaa22168c2b4p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1.00000000000001p+0L 0x1p+0L : 0xc.90fdaa22168c2b5p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1.00000000000001p+0L 0x1p+0L : 0xc.90fdaa22168c2b4p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1.00000000000001p+0L 0x1p+0L : 0xc.90fdaa22168c2b5p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1.00000000000001p+0L 0x1p+0L : 0xc.90fdaa22168c2b4p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1.00000000000001p+0L 0x1p+0L : 0xc.90fdaa22168c2b5p-4L : inexact-ok
+= atan2 downward ldbl-128 0x1.00000000000001p+0L 0x1p+0L : 0xc.90fdaa22168c2b4c4c6628b80db8p-4L : inexact-ok
+= atan2 tonearest ldbl-128 0x1.00000000000001p+0L 0x1p+0L : 0xc.90fdaa22168c2b4c4c6628b80dcp-4L : inexact-ok
+= atan2 towardzero ldbl-128 0x1.00000000000001p+0L 0x1p+0L : 0xc.90fdaa22168c2b4c4c6628b80db8p-4L : inexact-ok
+= atan2 upward ldbl-128 0x1.00000000000001p+0L 0x1p+0L : 0xc.90fdaa22168c2b4c4c6628b80dcp-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1.00000000000001p+0L 0x1p+0L : 0xc.90fdaa22168c2b4c4c6628b80cp-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1.00000000000001p+0L 0x1p+0L : 0xc.90fdaa22168c2b4c4c6628b80cp-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1.00000000000001p+0L 0x1p+0L : 0xc.90fdaa22168c2b4c4c6628b80cp-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1.00000000000001p+0L 0x1p+0L : 0xc.90fdaa22168c2b4c4c6628b81p-4L : inexact-ok
+= atan2 downward ldbl-96-intel 0x1.00000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168bab4p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1.00000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168bab5p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1.00000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168bab4p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1.00000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168bab5p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1.00000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168bab4p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1.00000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168bab5p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1.00000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168bab4p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1.00000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168bab5p-4L : inexact-ok
+= atan2 downward ldbl-128 0x1.00000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168bab4c4c6628b811b8p-4L : inexact-ok
+= atan2 tonearest ldbl-128 0x1.00000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168bab4c4c6628b811cp-4L : inexact-ok
+= atan2 towardzero ldbl-128 0x1.00000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168bab4c4c6628b811b8p-4L : inexact-ok
+= atan2 upward ldbl-128 0x1.00000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168bab4c4c6628b811cp-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1.00000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168bab4c4c6628b81p-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1.00000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168bab4c4c6628b81p-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1.00000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168bab4c4c6628b81p-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1.00000000000001p+0L 0x1.0000000000001p+0L : 0xc.90fdaa22168bab4c4c6628b814p-4L : inexact-ok
+= atan2 downward ldbl-96-intel 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-intel 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-intel 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 upward ldbl-96-intel 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 downward ldbl-96-m68k 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 tonearest ldbl-96-m68k 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 towardzero ldbl-96-m68k 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c234p-4L : inexact-ok
+= atan2 upward ldbl-96-m68k 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c235p-4L : inexact-ok
+= atan2 downward ldbl-128 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 tonearest ldbl-128 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 towardzero ldbl-128 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok
+= atan2 upward ldbl-128 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok
+= atan2 downward ldbl-128ibm 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 tonearest ldbl-128ibm 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 towardzero ldbl-128ibm 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok
+= atan2 upward ldbl-128ibm 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok
atanh 0
= atanh downward flt-32 0x0p+0f : 0x0p+0f : inexact-ok
= atanh tonearest flt-32 0x0p+0f : 0x0p+0f : inexact-ok
@@ -8190,6 +10893,10414 @@ expm1 -max
= expm1 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : -0x1p+0L : inexact-ok
= expm1 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : -0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
= expm1 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : -0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+hypot 0.7 12.4
+= hypot downward flt-32 0xb.33334p-4f 0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot tonearest flt-32 0xb.33334p-4f 0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot towardzero flt-32 0xb.33334p-4f 0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot upward flt-32 0xb.33334p-4f 0xc.66667p+0f : 0xc.6b745p+0f : inexact-ok
+= hypot downward dbl-64 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot upward dbl-64 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff6p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae8p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba965p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba94p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba98p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba94p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba98p+0L : inexact-ok
+= hypot downward flt-32 0xb.33334p-4f 0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot tonearest flt-32 0xb.33334p-4f 0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot towardzero flt-32 0xb.33334p-4f 0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot upward flt-32 0xb.33334p-4f 0xc.66666p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot downward dbl-64 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot upward dbl-64 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c58p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b91ap+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b94p+0L : inexact-ok
+= hypot downward dbl-64 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot upward dbl-64 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e728p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723eap+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723eap+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003d88p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b004p+0L : inexact-ok
+= hypot downward dbl-64 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot upward dbl-64 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bedp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bedp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afd8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152bp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c071p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c0718p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c071p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c0718p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c04p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c08p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14c68p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14c7p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14c68p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14c7p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd15p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d5972p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d59cp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot downward flt-32 0xb.33333p-4f 0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot tonearest flt-32 0xb.33333p-4f 0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot towardzero flt-32 0xb.33333p-4f 0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot upward flt-32 0xb.33333p-4f 0xc.66667p+0f : 0xc.6b745p+0f : inexact-ok
+= hypot downward dbl-64 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot upward dbl-64 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d8108p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d84p+0L : inexact-ok
+= hypot downward flt-32 0xb.33333p-4f 0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot tonearest flt-32 0xb.33333p-4f 0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot towardzero flt-32 0xb.33333p-4f 0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot upward flt-32 0xb.33333p-4f 0xc.66666p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot downward dbl-64 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot upward dbl-64 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a4550ap+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aedp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aedp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40beb8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40becp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40beb8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40becp+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40bcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40bcp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40cp+0L : inexact-ok
+= hypot downward dbl-64 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot upward dbl-64 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2cp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2cp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a428p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a8p+0L : inexact-ok
+= hypot downward dbl-64 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot upward dbl-64 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652fp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652fp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aaa78p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aa8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aacp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aa8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aacp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04cp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04c8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04cp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04c8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d08p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbb2p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbb28p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbb2p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbb28p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffb8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbcp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffb8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbcp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b7238p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b7238p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0820b6b9245853390b7228p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0820b6b9245853390b7228p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b73dp+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b74p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b74p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6fc8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6fdp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6fc8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6fdp+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot downward dbl-64 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward dbl-64 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fcp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fcp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdf98p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcep+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcep+0L : inexact-ok
+= hypot downward dbl-64 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward dbl-64 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c48p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c48p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d94958p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d94cp+0L : inexact-ok
+= hypot downward dbl-64 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward dbl-64 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6fp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6fp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d058p+0L : inexact-ok
+= hypot downward dbl-64 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward dbl-64 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0f48p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a1p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a1p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd7p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f31p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f318p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f31p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f318p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8fp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8fp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f4p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5fap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5fa8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5fap+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5fa8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f6p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f6p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199aa8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199c4p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a753419ap+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a753419984p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot downward dbl-64 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward dbl-64 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f5p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f5p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f410be92151798p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f410be921517cp+0L : inexact-ok
+= hypot downward dbl-64 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward dbl-64 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c41p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c41p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d62ap+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d62cp+0L : inexact-ok
+= hypot downward dbl-64 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward dbl-64 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e68p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e68p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f65753p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f657538p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f65753p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f657538p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f6578p+0L : inexact-ok
+= hypot downward dbl-64 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward dbl-64 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566bp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca07p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca04p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca08p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08ead8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08ecp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f576p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f5768p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f576p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f5768p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f54p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f58p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f54p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f58p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a0679926p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a0679926p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cce42c9a0679925p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cce42c9a0679925p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067993fp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067993f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067993fp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067993f8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067994p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067994p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b49ep+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b4cp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361eap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361ea08p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361eap+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361ea08p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361ecp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a088p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a0888p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a088p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a0888p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a0cp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9a5p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e98p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e98p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9cp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7e28p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33eab8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33ecp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e25bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e25bp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd126416483e25ap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd126416483e25ap+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e274p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e2748p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e274p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e2748p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e28p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e28p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e234p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e2348p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e234p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e2348p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e2p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b868p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b87p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b868p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b87p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410bcp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c9a8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4ccp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c45488p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c458p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e65p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e8p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ca18p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ca2p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ca18p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ca2p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067c8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067c8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ccp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce36b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce34p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce38p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce34p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce38p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd871bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd871bp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd1255a88cd871ap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd1255a88cd871ap+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd87348p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd874p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd874p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86f4p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86f48p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86f4p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86f48p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970aap+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d4p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c24p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee29p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8e8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cep+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970aap+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d4p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c24p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee29p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc67p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc67p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+hypot -0.7 12.4
+= hypot downward flt-32 -0xb.33333p-4f 0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot tonearest flt-32 -0xb.33333p-4f 0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot towardzero flt-32 -0xb.33333p-4f 0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot upward flt-32 -0xb.33333p-4f 0xc.66667p+0f : 0xc.6b745p+0f : inexact-ok
+= hypot downward dbl-64 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot upward dbl-64 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d8108p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333p-4L 0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d84p+0L : inexact-ok
+= hypot downward flt-32 -0xb.33333p-4f 0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot tonearest flt-32 -0xb.33333p-4f 0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot towardzero flt-32 -0xb.33333p-4f 0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot upward flt-32 -0xb.33333p-4f 0xc.66666p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot downward dbl-64 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a4550ap+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aedp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aedp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40beb8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40becp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40beb8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40becp+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40bcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40bcp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333p-4L 0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40cp+0L : inexact-ok
+= hypot downward dbl-64 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2cp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2cp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a428p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a8p+0L : inexact-ok
+= hypot downward dbl-64 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652fp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652fp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aaa78p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aa8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aacp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aa8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333p-4L 0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aacp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04cp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04c8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04cp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04c8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d08p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbb2p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbb28p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbb2p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbb28p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffb8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbcp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffb8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbcp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b7238p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b7238p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0820b6b9245853390b7228p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0820b6b9245853390b7228p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b73dp+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b74p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b74p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6fc8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6fdp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6fc8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6fdp+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot downward flt-32 -0xb.33334p-4f 0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot tonearest flt-32 -0xb.33334p-4f 0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot towardzero flt-32 -0xb.33334p-4f 0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot upward flt-32 -0xb.33334p-4f 0xc.66667p+0f : 0xc.6b745p+0f : inexact-ok
+= hypot downward dbl-64 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff6p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae8p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba965p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba94p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba98p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba94p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33334p-4L 0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba98p+0L : inexact-ok
+= hypot downward flt-32 -0xb.33334p-4f 0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot tonearest flt-32 -0xb.33334p-4f 0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot towardzero flt-32 -0xb.33334p-4f 0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot upward flt-32 -0xb.33334p-4f 0xc.66666p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot downward dbl-64 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c58p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b91ap+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33334p-4L 0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b94p+0L : inexact-ok
+= hypot downward dbl-64 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e728p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723eap+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723eap+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003d88p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33334p-4L 0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b004p+0L : inexact-ok
+= hypot downward dbl-64 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bedp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bedp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afd8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33334p-4L 0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152bp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c071p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c0718p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c071p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c0718p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c04p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33334p-4L 0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c08p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14c68p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14c7p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14c68p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14c7p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33334p-4L 0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd15p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d5972p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d59cp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot downward dbl-64 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f5p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f5p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f410be92151798p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f410be921517cp+0L : inexact-ok
+= hypot downward dbl-64 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c41p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c41p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d62ap+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d62cp+0L : inexact-ok
+= hypot downward dbl-64 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e68p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e68p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f65753p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f657538p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f65753p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f657538p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f6578p+0L : inexact-ok
+= hypot downward dbl-64 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca07p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca04p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca08p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08ead8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08ecp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f576p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f5768p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f576p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f5768p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f54p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f58p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f54p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f58p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a0679926p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a0679926p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cce42c9a0679925p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cce42c9a0679925p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067993fp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067993f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067993fp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067993f8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067994p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067994p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot downward dbl-64 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fcp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fcp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdf98p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcep+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcep+0L : inexact-ok
+= hypot downward dbl-64 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c48p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c48p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d94958p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d94cp+0L : inexact-ok
+= hypot downward dbl-64 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6fp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6fp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d058p+0L : inexact-ok
+= hypot downward dbl-64 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0f48p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a1p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a1p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd7p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f31p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f318p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f31p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f318p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8fp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8fp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f4p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5fap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5fa8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5fap+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5fa8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f6p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f6p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199aa8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199c4p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a753419ap+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a753419984p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b868p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b87p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b868p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b87p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410bcp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c9a8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4ccp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c45488p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c458p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e65p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e8p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ca18p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ca2p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ca18p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ca2p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067c8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067c8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ccp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce36b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce34p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce38p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce34p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce38p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd871bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd871bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd1255a88cd871ap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd1255a88cd871ap+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd87348p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd874p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd874p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86f4p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86f48p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86f4p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86f48p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b49ep+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b4cp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361eap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361ea08p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361eap+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361ea08p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361ecp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a088p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a0888p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a088p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a0888p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a0cp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9a5p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e98p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e98p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9cp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7e28p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33eab8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33ecp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e25bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e25bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd126416483e25ap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd126416483e25ap+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e274p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e2748p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e274p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e2748p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e28p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e28p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e234p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e2348p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e234p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e2348p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e2p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cep+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970aap+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d4p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c24p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee29p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc67p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc67p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333333333333333333p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970aap+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d4p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c24p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee29p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8e8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333333333333333333333334p-4L 0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+hypot 0.7 -12.4
+= hypot downward flt-32 0xb.33334p-4f -0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot tonearest flt-32 0xb.33334p-4f -0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot towardzero flt-32 0xb.33334p-4f -0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot upward flt-32 0xb.33334p-4f -0xc.66666p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot downward dbl-64 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot upward dbl-64 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c58p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b91ap+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b94p+0L : inexact-ok
+= hypot downward flt-32 0xb.33334p-4f -0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot tonearest flt-32 0xb.33334p-4f -0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot towardzero flt-32 0xb.33334p-4f -0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot upward flt-32 0xb.33334p-4f -0xc.66667p+0f : 0xc.6b745p+0f : inexact-ok
+= hypot downward dbl-64 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot upward dbl-64 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff6p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae8p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba965p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba94p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba98p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba94p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba98p+0L : inexact-ok
+= hypot downward dbl-64 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot upward dbl-64 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bedp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bedp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afd8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152bp+0L : inexact-ok
+= hypot downward dbl-64 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot upward dbl-64 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e728p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723eap+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723eap+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003d88p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b004p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14c68p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14c7p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14c68p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14c7p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd15p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c071p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c0718p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c071p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c0718p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c04p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c08p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d5972p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d59cp+0L : inexact-ok
+= hypot downward flt-32 0xb.33333p-4f -0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot tonearest flt-32 0xb.33333p-4f -0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot towardzero flt-32 0xb.33333p-4f -0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot upward flt-32 0xb.33333p-4f -0xc.66666p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot downward dbl-64 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot upward dbl-64 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a4550ap+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aedp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aedp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40beb8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40becp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40beb8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40becp+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40bcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40bcp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40cp+0L : inexact-ok
+= hypot downward flt-32 0xb.33333p-4f -0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot tonearest flt-32 0xb.33333p-4f -0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot towardzero flt-32 0xb.33333p-4f -0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot upward flt-32 0xb.33333p-4f -0xc.66667p+0f : 0xc.6b745p+0f : inexact-ok
+= hypot downward dbl-64 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot upward dbl-64 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d8108p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d84p+0L : inexact-ok
+= hypot downward dbl-64 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot upward dbl-64 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652fp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652fp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aaa78p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aa8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aacp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aa8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aacp+0L : inexact-ok
+= hypot downward dbl-64 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot upward dbl-64 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2cp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2cp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a428p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a8p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbb2p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbb28p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbb2p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbb28p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffb8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbcp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffb8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbcp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04cp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04c8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04cp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04c8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d08p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0820b6b9245853390b7228p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0820b6b9245853390b7228p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b7238p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b7238p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6fc8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6fdp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6fc8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6fdp+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b73dp+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b74p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b74p+0L : inexact-ok
+= hypot downward dbl-64 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward dbl-64 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c48p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c48p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d94958p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d94cp+0L : inexact-ok
+= hypot downward dbl-64 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward dbl-64 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fcp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fcp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdf98p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcep+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcep+0L : inexact-ok
+= hypot downward dbl-64 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward dbl-64 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0f48p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a1p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a1p+0L : inexact-ok
+= hypot downward dbl-64 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward dbl-64 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6fp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6fp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d058p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5fap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5fa8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5fap+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5fa8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f6p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f6p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd7p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f31p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f318p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f31p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f318p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8fp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8fp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f4p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199aa8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a753419984p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199c4p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a753419ap+0L : inexact-ok
+= hypot downward dbl-64 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward dbl-64 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c41p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c41p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d62ap+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d62cp+0L : inexact-ok
+= hypot downward dbl-64 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward dbl-64 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f5p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f5p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f410be92151798p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f410be921517cp+0L : inexact-ok
+= hypot downward dbl-64 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward dbl-64 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566bp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca07p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca04p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca08p+0L : inexact-ok
+= hypot downward dbl-64 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest dbl-64 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero dbl-64 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward dbl-64 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e68p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e68p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f65753p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f657538p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f65753p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f657538p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f6578p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f576p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f5768p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f576p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f5768p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f54p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f58p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f54p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f58p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08ead8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08ecp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cce42c9a0679925p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cce42c9a0679925p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a0679926p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a0679926p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067993fp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067993f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067993fp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067993f8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067994p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067994p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361eap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361ea08p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361eap+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361ea08p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361ecp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b49ep+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b4cp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9a5p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e98p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e98p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9cp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a088p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a0888p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a088p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a0888p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a0cp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33eab8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33ecp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7e28p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd126416483e25ap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd126416483e25ap+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e25bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e25bp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e234p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e2348p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e234p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e2348p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e2p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e274p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e2748p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e274p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e2748p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e28p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e28p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c9a8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4ccp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b868p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b87p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b868p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b87p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410bcp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e65p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e8p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c45488p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c458p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce36b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce34p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce38p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce34p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce38p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ca18p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ca2p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ca18p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ca2p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067c8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067c8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ccp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd1255a88cd871ap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd1255a88cd871ap+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd871bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd871bp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86f4p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86f48p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86f4p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86f48p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd87348p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd874p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd874p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.333333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.333333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.333333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970aap+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d4p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee29p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c24p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8e8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cep+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970aap+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d4p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee29p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c24p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc67p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc67p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot downward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+hypot -0.7 -12.4
+= hypot downward flt-32 -0xb.33333p-4f -0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot tonearest flt-32 -0xb.33333p-4f -0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot towardzero flt-32 -0xb.33333p-4f -0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot upward flt-32 -0xb.33333p-4f -0xc.66666p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot downward dbl-64 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a4550ap+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aedp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aedp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40beb8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40becp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40beb8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40becp+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40bcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40bcp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333p-4L -0xc.66666p+0L : 0xc.6b7435a45509aec49781cf40cp+0L : inexact-ok
+= hypot downward flt-32 -0xb.33333p-4f -0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot tonearest flt-32 -0xb.33333p-4f -0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot towardzero flt-32 -0xb.33333p-4f -0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot upward flt-32 -0xb.33333p-4f -0xc.66667p+0f : 0xc.6b745p+0f : inexact-ok
+= hypot downward dbl-64 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot upward dbl-64 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d8108p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333p-4L -0xc.66667p+0L : 0xc.6b74459dd23a4dbb5549637d84p+0L : inexact-ok
+= hypot downward dbl-64 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652fp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652fp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aaa78p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aa8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aacp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aa8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333p-4L -0xc.666666666666p+0L : 0xc.6b743c0820b652e79d827d9aacp+0L : inexact-ok
+= hypot downward dbl-64 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2cp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2cp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a428p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0820b6d2b3870767e7a8p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbb2p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbb28p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbb2p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbb28p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffb8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbcp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffb8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0820b6b91df4878bffbcp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04cp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04c8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04cp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04c8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0820b6b92dee04bc9d08p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0820b6b9245853390b7228p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0820b6b9245853390b7228p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b7238p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b7238p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6fc8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6fdp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6fc8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6fdp+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b6cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b73dp+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b74p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0820b6b9245853390b74p+0L : inexact-ok
+= hypot downward flt-32 -0xb.33334p-4f -0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot tonearest flt-32 -0xb.33334p-4f -0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot towardzero flt-32 -0xb.33334p-4f -0xc.66666p+0f : 0xc.6b743p+0f : inexact-ok
+= hypot upward flt-32 -0xb.33334p-4f -0xc.66666p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot downward dbl-64 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c58p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b91ap+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33334p-4L -0xc.66666p+0L : 0xc.6b7435b2c2c5220efb3fac2b94p+0L : inexact-ok
+= hypot downward flt-32 -0xb.33334p-4f -0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot tonearest flt-32 -0xb.33334p-4f -0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot towardzero flt-32 -0xb.33334p-4f -0xc.66667p+0f : 0xc.6b744p+0f : inexact-ok
+= hypot upward flt-32 -0xb.33334p-4f -0xc.66667p+0f : 0xc.6b745p+0f : inexact-ok
+= hypot downward dbl-64 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff6p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae8p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba965p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba94p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba98p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba94p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33334p-4L -0xc.66667p+0L : 0xc.6b7445ac3ff5ae76c1d736ba98p+0L : inexact-ok
+= hypot downward dbl-64 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bedp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bedp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afd8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33334p-4L -0xc.666666666666p+0L : 0xc.6b743c168e71bec59e5b152bp+0L : inexact-ok
+= hypot downward dbl-64 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e728p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723eap+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723eap+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003d88p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33334p-4L -0xc.6666666666668p+0L : 0xc.6b743c168e723e9187df6b004p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14c68p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14c7p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14c68p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14c7p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33334p-4L -0xc.666666666666666p+0L : 0xc.6b743c168e7224fbf55facd15p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c071p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c0718p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c071p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c0718p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c04p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33334p-4L -0xc.666666666666667p+0L : 0xc.6b743c168e72250beedcdd5c08p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d5972p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c168e722502592b59d59cp+0L : inexact-ok
+= hypot downward dbl-64 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c41p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c41p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d62ap+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c4007f8f39d62cp+0L : inexact-ok
+= hypot downward dbl-64 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f5p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f5p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f410be92151798p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f410be921517cp+0L : inexact-ok
+= hypot downward dbl-64 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca07p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca04p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566a771c962ca08p+0L : inexact-ok
+= hypot downward dbl-64 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e68p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e68p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f65753p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f657538p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f65753p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f657538p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6735b4e2f6578p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f576p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f5768p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f576p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f5768p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f54p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f58p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f54p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375ccddc8ce596f58p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08ead8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375ccedc24b8a08ecp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cce42c9a0679925p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cce42c9a0679925p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a0679926p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a0679926p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06798cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067993fp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067993f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067993fp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067993f8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067994p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cce42c9a067994p+0L : inexact-ok
+= hypot downward dbl-64 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c48p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c48p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d94958p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c473ed6aa2d94cp+0L : inexact-ok
+= hypot downward dbl-64 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fcp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fcp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdf98p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcep+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95fb479c3f5dcep+0L : inexact-ok
+= hypot downward dbl-64 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0f48p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a1p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a0cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b0375671adfa4906a1p+0L : inexact-ok
+= hypot downward dbl-64 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward dbl-64 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6fp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6fp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6e6c9295d058p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5fap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5fa8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5fap+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5fa8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f6p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f5cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd5136a9870f6p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd7p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f31p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f318p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f31p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f318p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8fp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8fp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd613026b7a8f4p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199aa8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a753419984p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199c4p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd579a753419ap+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c9a8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42ea89dd7f4ccp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b868p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b87p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b868p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b87p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f34f78410bcp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e65p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59ad7e928e8p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c45488p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1845cb5c458p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce36b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce34p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce38p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce34p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf1dcdfce38p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ca18p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ca2p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ca18p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ca2p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067c8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067c8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1beb5a1067ccp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd1255a88cd871ap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd1255a88cd871ap+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd871bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd871bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86f4p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86f48p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86f4p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86f48p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd86cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd87348p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd874p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd1255a88cd874p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361eap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361ea08p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361eap+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361ea08p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eb70b9361ecp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b49ep+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f43653f6b4cp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9a5p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e98p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e98p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d5a945a48e9cp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a088p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a0888p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a088p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a0888p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a192ca712a0cp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33eab8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0c004a9b33ecp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7e28p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd126416483e25ap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd126416483e25ap+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e25bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e25bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e234p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e2348p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e234p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e2348p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e2p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e274p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e2748p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e274p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e2748p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e28p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd126416483e28p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.333333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333338p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cep+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970aap+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d4p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee29p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c24p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc67p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc67p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.3333333333333333333333333p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.66666p+0L : 0xc.6b7435a737c8c42eab80970aap+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.66667p+0L : 0xc.6b7445a0b4f95f6f37da4322d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.666666666666p+0L : 0xc.6b743c0b037566d59dbaa83d4p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.6666666666668p+0L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.666666666666666p+0L : 0xc.6b743c0b0375cd0bf4bf9ee29p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.666666666666667p+0L : 0xc.6b743c0b0375cd1bee3ccf7c24p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.666666666666666666666666666p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.6666666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8e8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666664p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xb.33333333333333333333333334p-4L -0xc.66666666666666666666666668p+0L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+hypot 12.4 0.7
+= hypot downward flt-32 0xc.66667p+0f 0xb.33334p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot tonearest flt-32 0xc.66667p+0f 0xb.33334p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot towardzero flt-32 0xc.66667p+0f 0xb.33334p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot upward flt-32 0xc.66667p+0f 0xb.33334p-4f : 0xc.6b745p+0f : inexact-ok
+= hypot downward dbl-64 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot upward dbl-64 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff6p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae8p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba965p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba94p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba98p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba94p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba98p+0L : inexact-ok
+= hypot downward flt-32 0xc.66667p+0f 0xb.33333p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot tonearest flt-32 0xc.66667p+0f 0xb.33333p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot towardzero flt-32 0xc.66667p+0f 0xb.33333p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot upward flt-32 0xc.66667p+0f 0xb.33333p-4f : 0xc.6b745p+0f : inexact-ok
+= hypot downward dbl-64 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot upward dbl-64 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d8108p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d84p+0L : inexact-ok
+= hypot downward dbl-64 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward dbl-64 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fcp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fcp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdf98p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcep+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcep+0L : inexact-ok
+= hypot downward dbl-64 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward dbl-64 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f5p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f5p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be92151798p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be921517cp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b49ep+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b4cp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b868p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b87p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b868p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b87p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410bcp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d8p+0L : inexact-ok
+= hypot downward flt-32 0xc.66666p+0f 0xb.33334p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot tonearest flt-32 0xc.66666p+0f 0xb.33334p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot towardzero flt-32 0xc.66666p+0f 0xb.33334p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot upward flt-32 0xc.66666p+0f 0xb.33334p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot downward dbl-64 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot upward dbl-64 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c58p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b91ap+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b94p+0L : inexact-ok
+= hypot downward flt-32 0xc.66666p+0f 0xb.33333p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot tonearest flt-32 0xc.66666p+0f 0xb.33333p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot towardzero flt-32 0xc.66666p+0f 0xb.33333p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot upward flt-32 0xc.66666p+0f 0xb.33333p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot downward dbl-64 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot upward dbl-64 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a4550ap+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aedp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aedp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40beb8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40becp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40beb8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40becp+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40bcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40bcp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40cp+0L : inexact-ok
+= hypot downward dbl-64 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward dbl-64 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c48p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c48p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d94958p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d94cp+0L : inexact-ok
+= hypot downward dbl-64 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward dbl-64 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c41p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c41p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d62ap+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d62cp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361eap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361ea08p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361eap+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361ea08p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361ecp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c9a8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4ccp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970aap+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cep+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970aap+0L : inexact-ok
+= hypot downward dbl-64 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot upward dbl-64 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e728p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723eap+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723eap+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003d88p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9187df6b004p+0L : inexact-ok
+= hypot downward dbl-64 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot upward dbl-64 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2cp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2cp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a428p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a8p+0L : inexact-ok
+= hypot downward dbl-64 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward dbl-64 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6fp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6fp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d058p+0L : inexact-ok
+= hypot downward dbl-64 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward dbl-64 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e68p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e68p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f65753p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f657538p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f65753p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f657538p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f6578p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a088p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a0888p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a088p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a0888p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a0cp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c45488p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c458p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.6666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.6666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.6666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.6666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.6666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.6666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.6666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.6666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot downward dbl-64 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot upward dbl-64 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bedp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bedp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afd8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152bp+0L : inexact-ok
+= hypot downward dbl-64 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot upward dbl-64 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652fp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652fp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aaa78p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aa8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aacp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aa8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aacp+0L : inexact-ok
+= hypot downward dbl-64 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward dbl-64 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0f48p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a1p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a1p+0L : inexact-ok
+= hypot downward dbl-64 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward dbl-64 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566bp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca07p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca04p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca08p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9a5p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e98p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e98p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9cp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e65p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d4p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d4p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c071p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c0718p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c071p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c0718p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c04p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c08p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04cp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04c8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04cp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04c8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d08p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd7p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f31p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f318p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f31p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f318p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8fp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8fp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f4p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08ead8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08ecp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7e28p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ca18p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ca2p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ca18p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ca2p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067c8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067c8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ccp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c24p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c24p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14c68p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14c7p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14c68p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14c7p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd15p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbb2p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbb28p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbb2p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbb28p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffb8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbcp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffb8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbcp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5fap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5fa8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5fap+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5fa8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f6p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f6p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f576p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f5768p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f576p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f5768p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f54p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f58p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f54p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f58p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33eab8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33ecp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce36b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce34p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce38p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce34p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce38p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee29p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee29p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d5972p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7238p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7238p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aa8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a0679926p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a0679926p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25bp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871bp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8e8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7228p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7228p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a0679925p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a0679925p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25ap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25ap+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871ap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871ap+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d598b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d59cp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b73dp+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b74p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b74p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199c4p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a753419ap+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067993fp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067993f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067993fp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067993f8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067994p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067994p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e274p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2748p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e274p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2748p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e28p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e28p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87348p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd874p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd874p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d594b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6fc8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6fdp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6fc8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6fdp+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a753419984p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e234p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2348p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e234p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2348p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86f4p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86f48p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86f4p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86f48p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc67p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc67p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+hypot -12.4 0.7
+= hypot downward flt-32 -0xc.66666p+0f 0xb.33334p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot tonearest flt-32 -0xc.66666p+0f 0xb.33334p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot towardzero flt-32 -0xc.66666p+0f 0xb.33334p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot upward flt-32 -0xc.66666p+0f 0xb.33334p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot downward dbl-64 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c58p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b91ap+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666p+0L 0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b94p+0L : inexact-ok
+= hypot downward flt-32 -0xc.66666p+0f 0xb.33333p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot tonearest flt-32 -0xc.66666p+0f 0xb.33333p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot towardzero flt-32 -0xc.66666p+0f 0xb.33333p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot upward flt-32 -0xc.66666p+0f 0xb.33333p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot downward dbl-64 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a4550ap+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aedp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aedp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40beb8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40becp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40beb8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40becp+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40bcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40bcp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666p+0L 0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40cp+0L : inexact-ok
+= hypot downward dbl-64 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c48p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c48p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d94958p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666p+0L 0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d94cp+0L : inexact-ok
+= hypot downward dbl-64 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c41p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c41p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d62ap+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666p+0L 0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d62cp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361eap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361ea08p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361eap+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361ea08p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666p+0L 0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361ecp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c9a8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666p+0L 0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4ccp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970aap+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cep+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970aap+0L : inexact-ok
+= hypot downward flt-32 -0xc.66667p+0f 0xb.33334p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot tonearest flt-32 -0xc.66667p+0f 0xb.33334p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot towardzero flt-32 -0xc.66667p+0f 0xb.33334p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot upward flt-32 -0xc.66667p+0f 0xb.33334p-4f : 0xc.6b745p+0f : inexact-ok
+= hypot downward dbl-64 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff6p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae8p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba965p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba94p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba98p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba94p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66667p+0L 0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba98p+0L : inexact-ok
+= hypot downward flt-32 -0xc.66667p+0f 0xb.33333p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot tonearest flt-32 -0xc.66667p+0f 0xb.33333p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot towardzero flt-32 -0xc.66667p+0f 0xb.33333p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot upward flt-32 -0xc.66667p+0f 0xb.33333p-4f : 0xc.6b745p+0f : inexact-ok
+= hypot downward dbl-64 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot upward dbl-64 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d8108p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66667p+0L 0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d84p+0L : inexact-ok
+= hypot downward dbl-64 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fcp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fcp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdf98p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcep+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66667p+0L 0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcep+0L : inexact-ok
+= hypot downward dbl-64 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f5p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f5p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be92151798p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66667p+0L 0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be921517cp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b49ep+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66667p+0L 0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b4cp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b868p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b87p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b868p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b87p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66667p+0L 0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410bcp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d8p+0L : inexact-ok
+= hypot downward dbl-64 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bedp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bedp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afd8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152bp+0L : inexact-ok
+= hypot downward dbl-64 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652fp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652fp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aaa78p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aa8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aacp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aa8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aacp+0L : inexact-ok
+= hypot downward dbl-64 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0f48p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a1p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a1p+0L : inexact-ok
+= hypot downward dbl-64 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca07p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca04p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca08p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9a5p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e98p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e98p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9cp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e65p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d4p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d4p+0L : inexact-ok
+= hypot downward dbl-64 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e728p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723eap+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723eap+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003d88p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.6666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e723e9187df6b004p+0L : inexact-ok
+= hypot downward dbl-64 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2cp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2cp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a428p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.6666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a8p+0L : inexact-ok
+= hypot downward dbl-64 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6fp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6fp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.6666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d058p+0L : inexact-ok
+= hypot downward dbl-64 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e68p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e68p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f65753p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f657538p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f65753p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f657538p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.6666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f6578p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a088p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a0888p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a088p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a0888p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.6666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a0cp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c45488p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.6666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c458p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.6666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.6666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.6666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.6666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.6666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.6666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.6666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.6666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14c68p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14c7p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14c68p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14c7p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd15p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbb2p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbb28p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbb2p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbb28p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffb8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbcp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffb8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbcp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5fap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5fa8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5fap+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5fa8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f6p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f6p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f576p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f5768p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f576p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f5768p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f54p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f58p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f54p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f58p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33eab8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33ecp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce36b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce34p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce38p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce34p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce38p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee29p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee29p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c071p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c0718p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c071p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c0718p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c04p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666667p+0L 0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c08p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04cp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04c8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04cp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04c8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666667p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d08p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd7p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f31p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f318p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f31p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f318p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8fp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8fp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666667p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f4p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08ead8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666667p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08ecp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7e28p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666667p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ca18p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ca2p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ca18p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ca2p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067c8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067c8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666667p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ccp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666667p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c24p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666667p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c24p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7228p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7228p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a0679925p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a0679925p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25ap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25ap+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871ap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871ap+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d5972p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7238p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7238p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aa8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a0679926p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a0679926p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8e8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d594b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6fc8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6fdp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6fc8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6fdp+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a753419984p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e234p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2348p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e234p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2348p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86f4p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86f48p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86f4p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86f48p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc67p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc67p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666664p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d598b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.33334p-4L : 0xc.6b743c168e722502592b59d59cp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b73dp+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b74p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b74p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199c4p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a753419ap+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067993fp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067993f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067993fp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067993f8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067994p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067994p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e274p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2748p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e274p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2748p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e28p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e28p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87348p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd874p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd874p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666668p+0L 0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+hypot 12.4 -0.7
+= hypot downward flt-32 0xc.66667p+0f -0xb.33333p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot tonearest flt-32 0xc.66667p+0f -0xb.33333p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot towardzero flt-32 0xc.66667p+0f -0xb.33333p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot upward flt-32 0xc.66667p+0f -0xb.33333p-4f : 0xc.6b745p+0f : inexact-ok
+= hypot downward dbl-64 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot upward dbl-64 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d8108p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d84p+0L : inexact-ok
+= hypot downward flt-32 0xc.66667p+0f -0xb.33334p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot tonearest flt-32 0xc.66667p+0f -0xb.33334p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot towardzero flt-32 0xc.66667p+0f -0xb.33334p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot upward flt-32 0xc.66667p+0f -0xb.33334p-4f : 0xc.6b745p+0f : inexact-ok
+= hypot downward dbl-64 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot upward dbl-64 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff6p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae8p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba965p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba94p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba98p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba94p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba98p+0L : inexact-ok
+= hypot downward dbl-64 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward dbl-64 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f5p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f5p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be92151798p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be921517cp+0L : inexact-ok
+= hypot downward dbl-64 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward dbl-64 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fcp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fcp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdf98p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcep+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcep+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b868p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b87p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b868p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b87p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410bcp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b49ep+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b4cp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d8p+0L : inexact-ok
+= hypot downward flt-32 0xc.66666p+0f -0xb.33333p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot tonearest flt-32 0xc.66666p+0f -0xb.33333p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot towardzero flt-32 0xc.66666p+0f -0xb.33333p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot upward flt-32 0xc.66666p+0f -0xb.33333p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot downward dbl-64 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot upward dbl-64 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a4550ap+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aedp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aedp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40beb8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40becp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40beb8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40becp+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40bcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40bcp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40cp+0L : inexact-ok
+= hypot downward flt-32 0xc.66666p+0f -0xb.33334p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot tonearest flt-32 0xc.66666p+0f -0xb.33334p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot towardzero flt-32 0xc.66666p+0f -0xb.33334p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot upward flt-32 0xc.66666p+0f -0xb.33334p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot downward dbl-64 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot upward dbl-64 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c58p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b91ap+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b94p+0L : inexact-ok
+= hypot downward dbl-64 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward dbl-64 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c41p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c41p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d62ap+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d62cp+0L : inexact-ok
+= hypot downward dbl-64 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward dbl-64 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c48p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c48p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d94958p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d94cp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c9a8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4ccp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361eap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361ea08p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361eap+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361ea08p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361ecp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cep+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970aap+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970aap+0L : inexact-ok
+= hypot downward dbl-64 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot upward dbl-64 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2cp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2cp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a428p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a8p+0L : inexact-ok
+= hypot downward dbl-64 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot upward dbl-64 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e728p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723eap+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723eap+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003d88p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9187df6b004p+0L : inexact-ok
+= hypot downward dbl-64 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward dbl-64 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e68p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e68p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f65753p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f657538p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f65753p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f657538p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f6578p+0L : inexact-ok
+= hypot downward dbl-64 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward dbl-64 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6fp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6fp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d058p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c45488p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c458p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a088p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a0888p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a088p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a0888p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a0cp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.6666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.6666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.6666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.6666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.6666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.6666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.6666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.6666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot downward dbl-64 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot upward dbl-64 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652fp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652fp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aaa78p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aa8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aacp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aa8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aacp+0L : inexact-ok
+= hypot downward dbl-64 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot upward dbl-64 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bedp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bedp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afd8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152bp+0L : inexact-ok
+= hypot downward dbl-64 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward dbl-64 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566bp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca07p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca04p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca08p+0L : inexact-ok
+= hypot downward dbl-64 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest dbl-64 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero dbl-64 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward dbl-64 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0f48p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a1p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a1p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e65p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e8p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9a5p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e98p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e98p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9cp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d4p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d4p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04cp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04c8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04cp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04c8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d08p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c071p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c0718p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c071p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c0718p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c04p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c08p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08ead8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08ecp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd7p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f31p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f318p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f31p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f318p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8fp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8fp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f4p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ca18p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ca2p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ca18p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ca2p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067c8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067c8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ccp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7e28p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c24p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c24p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbb2p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbb28p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbb2p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbb28p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffb8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbcp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffb8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbcp+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14c68p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14c7p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14c68p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14c7p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd15p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f576p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f5768p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f576p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f5768p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f54p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f58p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f54p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f58p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5fap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5fa8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5fap+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5fa8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f6p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f6p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce36b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce34p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce38p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce34p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce38p+0L : inexact-ok
+= hypot downward ldbl-96-intel 0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33eab8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33ecp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee29p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee29p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7238p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7238p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d5972p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a0679926p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a0679926p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aa8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871bp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25bp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot upward ldbl-128 0xc.6666666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8e8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7228p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7228p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a0679925p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a0679925p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871ap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871ap+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25ap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25ap+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.666666666666666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.666666666666666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.666666666666666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b73dp+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b74p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b74p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d598b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d59cp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067993fp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067993f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067993fp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067993f8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067994p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067994p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199c4p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a753419ap+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87348p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd874p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd874p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e274p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2748p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e274p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2748p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e28p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e28p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6fc8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6fdp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6fc8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6fdp+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d594b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a753419984p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86f4p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86f48p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86f4p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86f48p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86cp+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e234p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2348p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e234p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2348p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc67p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc67p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot downward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 0xc.66666666666666666666666664p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 0xc.66666666666666666666666664p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 0xc.66666666666666666666666664p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xc.66666666666666666666666664p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+hypot -12.4 -0.7
+= hypot downward flt-32 -0xc.66666p+0f -0xb.33333p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot tonearest flt-32 -0xc.66666p+0f -0xb.33333p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot towardzero flt-32 -0xc.66666p+0f -0xb.33333p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot upward flt-32 -0xc.66666p+0f -0xb.33333p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot downward dbl-64 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a4550ap+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aedp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aecp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aedp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40beb8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40becp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40beb8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40becp+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40bcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40bcp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666p+0L -0xb.33333p-4L : 0xc.6b7435a45509aec49781cf40cp+0L : inexact-ok
+= hypot downward flt-32 -0xc.66666p+0f -0xb.33334p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot tonearest flt-32 -0xc.66666p+0f -0xb.33334p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot towardzero flt-32 -0xc.66666p+0f -0xb.33334p-4f : 0xc.6b743p+0f : inexact-ok
+= hypot upward flt-32 -0xc.66666p+0f -0xb.33334p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot downward dbl-64 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c58p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c522p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5221p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9198p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b91ap+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b9p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666p+0L -0xb.33334p-4L : 0xc.6b7435b2c2c5220efb3fac2b94p+0L : inexact-ok
+= hypot downward dbl-64 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c41p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c41p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d629f8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d62ap+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d628p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666p+0L -0xb.333333333333p-4L : 0xc.6b7435a737c8c4007f8f39d62cp+0L : inexact-ok
+= hypot downward dbl-64 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c48p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c47p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c48p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d9495p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d94958p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d948p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666p+0L -0xb.3333333333338p-4L : 0xc.6b7435a737c8c473ed6aa2d94cp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c9a8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4c8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666p+0L -0xb.333333333333333p-4L : 0xc.6b7435a737c8c42ea89dd7f4ccp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c43p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361eap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361ea08p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361eap+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361ea08p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666p+0L -0xb.333333333333334p-4L : 0xc.6b7435a737c8c42eb70b9361ecp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cep+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7435a737c8c42eab80970aap+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9ce8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9cfp+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970a9cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7435a737c8c42eab80970aap+0L : inexact-ok
+= hypot downward flt-32 -0xc.66667p+0f -0xb.33333p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot tonearest flt-32 -0xc.66667p+0f -0xb.33333p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot towardzero flt-32 -0xc.66667p+0f -0xb.33333p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot upward flt-32 -0xc.66667p+0f -0xb.33333p-4f : 0xc.6b745p+0f : inexact-ok
+= hypot downward dbl-64 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot upward dbl-64 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dcp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d81p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d8108p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66667p+0L -0xb.33333p-4L : 0xc.6b74459dd23a4dbb5549637d84p+0L : inexact-ok
+= hypot downward flt-32 -0xc.66667p+0f -0xb.33334p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot tonearest flt-32 -0xc.66667p+0f -0xb.33334p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot towardzero flt-32 -0xc.66667p+0f -0xb.33334p-4f : 0xc.6b744p+0f : inexact-ok
+= hypot upward flt-32 -0xc.66667p+0f -0xb.33334p-4f : 0xc.6b745p+0f : inexact-ok
+= hypot downward dbl-64 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff6p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae8p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae7p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba965p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba94p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba98p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba94p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66667p+0L -0xb.33334p-4L : 0xc.6b7445ac3ff5ae76c1d736ba98p+0L : inexact-ok
+= hypot downward dbl-64 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f5p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f4p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f5p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be921517978p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be92151798p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be9215178p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66667p+0L -0xb.333333333333p-4L : 0xc.6b7445a0b4f95f410be921517cp+0L : inexact-ok
+= hypot downward dbl-64 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fcp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fbp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fcp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdf98p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcep+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66667p+0L -0xb.3333333333338p-4L : 0xc.6b7445a0b4f95fb479c3f5dcep+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b868p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b87p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b868p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b87p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410b8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66667p+0L -0xb.333333333333333p-4L : 0xc.6b7445a0b4f95f6f34f78410bcp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f7p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b49ep+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b48p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66667p+0L -0xb.333333333333334p-4L : 0xc.6b7445a0b4f95f6f43653f6b4cp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b7445a0b4f95f6f37da4322d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d58p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d588p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b7445a0b4f95f6f37da4322d8p+0L : inexact-ok
+= hypot downward dbl-64 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652fp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652ep+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652fp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aaa7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aaa78p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aa8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aacp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aa8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b652e79d827d9aacp+0L : inexact-ok
+= hypot downward dbl-64 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bedp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71becp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bedp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afd78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afd8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152afcp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e71bec59e5b152bp+0L : inexact-ok
+= hypot downward dbl-64 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca06f8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca07p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca04p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b037566a771c962ca08p+0L : inexact-ok
+= hypot downward dbl-64 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375672p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0f4p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0f48p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a1p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a0cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375671adfa4906a1p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e648p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e65p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b037566d59ad7e928e8p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566dp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9a48p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9a5p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e98p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e98p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b037566d5a945a48e9cp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b037566d59dbaa83d4p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d3cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b037566d59dbaa83d4p+0L : inexact-ok
+= hypot downward dbl-64 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2cp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2bp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2cp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a42p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a428p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.6666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6d2b3870767e7a8p+0L : inexact-ok
+= hypot downward dbl-64 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e728p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723eap+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723eap+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003d88p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9187df6b003cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.6666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e723e9187df6b004p+0L : inexact-ok
+= hypot downward dbl-64 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e68p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e67p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e68p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f65753p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f657538p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f65753p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f657538p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f6574p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.6666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375e6735b4e2f6578p+0L : inexact-ok
+= hypot downward dbl-64 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest dbl-64 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero dbl-64 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward dbl-64 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward ldbl-96-intel -0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6fp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6ep+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6fp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057d78p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057d8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d057cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.6666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375e6e6c9295d058p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c4548p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c45488p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c454p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.6666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375e6a1845cb5c458p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a088p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a0888p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a088p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a0888p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a08p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.6666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375e6a192ca712a0cp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.6666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.6666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.6666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.6666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8abbp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8abb8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.6666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.6666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.6666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8a8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.6666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375e6a1873f74d8acp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbb2p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbb28p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbb2p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbb28p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffb8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbcp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffb8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b91df4878bffbcp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14c68p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14c7p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14c68p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14c7p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd14cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e7224fbf55facd15p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f576p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f5768p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f576p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f5768p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f54p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f58p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f54p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccddc8ce596f58p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5fap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5fa8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5fap+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5fa8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f6p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f5cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd5136a9870f6p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce36b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce34p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce38p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce34p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd0bf1dcdfce38p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cdp+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33eabp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33eab8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd0c004a9b33ecp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd0bf4bf9ee29p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd0bf4bf9ee29p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b93p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04cp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04c8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04cp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04c8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d04p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666667p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b92dee04bc9d08p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e7225p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72251p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c071p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c0718p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c071p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c0718p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c04p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c08p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c04p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666667p+0L -0xb.33334p-4L : 0xc.6b743c168e72250beedcdd5c08p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccep+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccfp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08eadp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08ead8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08e8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08ecp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08e8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666667p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375ccedc24b8a08ecp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd7p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd6p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd7p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f31p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f318p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f31p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f318p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8fp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f4p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8fp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666667p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd613026b7a8f4p+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ca18p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ca2p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ca18p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ca2p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067c8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067c8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666667p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1beb5a1067ccp+0L : inexact-ok
+= hypot downward ldbl-96-intel -0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-intel -0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-96-m68k -0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k -0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd2p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7e28p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666667p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666667p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd1bee3ccf7c24p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c215p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.666666666666667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.666666666666667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.666666666666667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c2p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.666666666666667p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd1bee3ccf7c24p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7228p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7228p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d5971p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a0679925p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a0679925p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199a98p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871ap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871ap+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25ap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25ap+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8dp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.666666666666666666666666666p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7238p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b723p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7238p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d59718p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d5972p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a0679926p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799258p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a0679926p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aap+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199aa8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871a8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd871bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25a8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e25bp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8d8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8ep+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.6666666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8e8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6fc8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6fdp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6fc8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6fdp+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b6cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d594bp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d594b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d594p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798ff8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06798cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199838p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a753419984p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a75341998p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86f4p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86f48p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86f4p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86f48p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd86cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e234p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2348p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e234p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2348p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc67p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc67p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc678p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666664p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc68p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc4p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666664p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b73c8p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b73dp+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b74p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b7p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.33333p-4L : 0xc.6b743c0820b6b9245853390b74p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d598bp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d598b8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d598p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.33334p-4L : 0xc.6b743c168e722502592b59d59cp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067993fp+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067993f8p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067993fp+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067993f8p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067994p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a06799p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.333333333333p-4L : 0xc.6b743c0b0375cce42c9a067994p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199c38p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199c4p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a7534199cp+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.3333333333338p-4L : 0xc.6b743c0b0375cd579a753419ap+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd8734p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87348p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd874p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd87p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.333333333333333p-4L : 0xc.6b743c0b0375cd1255a88cd874p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e274p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2748p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e274p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e2748p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e28p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e24p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.333333333333334p-4L : 0xc.6b743c0b0375cd126416483e28p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.333333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333338p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.3333333333333333333333333p-4L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot downward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot tonearest ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot towardzero ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becca7p+0L : inexact-ok
+= hypot upward ldbl-128 -0xc.66666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becca78p+0L : inexact-ok
+= hypot downward ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becc8p+0L : inexact-ok
+= hypot upward ldbl-128ibm -0xc.66666666666666666666666668p+0L -0xb.33333333333333333333333334p-4L : 0xc.6b743c0b0375cd12588b4becccp+0L : inexact-ok
+hypot 0.75 0
+= hypot downward flt-32 0xcp-4f 0x0p+0f : 0xcp-4f : inexact-ok
+= hypot tonearest flt-32 0xcp-4f 0x0p+0f : 0xcp-4f : inexact-ok
+= hypot towardzero flt-32 0xcp-4f 0x0p+0f : 0xcp-4f : inexact-ok
+= hypot upward flt-32 0xcp-4f 0x0p+0f : 0xcp-4f : inexact-ok
+= hypot downward dbl-64 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot tonearest dbl-64 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot towardzero dbl-64 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot upward dbl-64 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot downward ldbl-96-intel 0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot upward ldbl-96-intel 0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot downward ldbl-96-m68k 0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot upward ldbl-96-m68k 0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot downward ldbl-128 0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot tonearest ldbl-128 0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot towardzero ldbl-128 0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot upward ldbl-128 0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot downward ldbl-128ibm 0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot upward ldbl-128ibm 0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+hypot -0.75 0
+= hypot downward flt-32 -0xcp-4f 0x0p+0f : 0xcp-4f : inexact-ok
+= hypot tonearest flt-32 -0xcp-4f 0x0p+0f : 0xcp-4f : inexact-ok
+= hypot towardzero flt-32 -0xcp-4f 0x0p+0f : 0xcp-4f : inexact-ok
+= hypot upward flt-32 -0xcp-4f 0x0p+0f : 0xcp-4f : inexact-ok
+= hypot downward dbl-64 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot tonearest dbl-64 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot towardzero dbl-64 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot upward dbl-64 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot downward ldbl-96-intel -0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot tonearest ldbl-96-intel -0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot towardzero ldbl-96-intel -0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot upward ldbl-96-intel -0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot downward ldbl-96-m68k -0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot upward ldbl-96-m68k -0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot downward ldbl-128 -0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot tonearest ldbl-128 -0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot towardzero ldbl-128 -0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot upward ldbl-128 -0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot downward ldbl-128ibm -0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot tonearest ldbl-128ibm -0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot towardzero ldbl-128ibm -0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+= hypot upward ldbl-128ibm -0xcp-4L 0x0p+0L : 0xcp-4L : inexact-ok
+hypot -5.7e7 0
+= hypot downward flt-32 -0x3.65c04p+24f 0x0p+0f : 0x3.65c04p+24f : inexact-ok
+= hypot tonearest flt-32 -0x3.65c04p+24f 0x0p+0f : 0x3.65c04p+24f : inexact-ok
+= hypot towardzero flt-32 -0x3.65c04p+24f 0x0p+0f : 0x3.65c04p+24f : inexact-ok
+= hypot upward flt-32 -0x3.65c04p+24f 0x0p+0f : 0x3.65c04p+24f : inexact-ok
+= hypot downward dbl-64 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot tonearest dbl-64 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot towardzero dbl-64 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot upward dbl-64 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot downward ldbl-96-intel -0x3.65c04p+24L 0x0p+0L : 0x3.65c04p+24L : inexact-ok
+= hypot tonearest ldbl-96-intel -0x3.65c04p+24L 0x0p+0L : 0x3.65c04p+24L : inexact-ok
+= hypot towardzero ldbl-96-intel -0x3.65c04p+24L 0x0p+0L : 0x3.65c04p+24L : inexact-ok
+= hypot upward ldbl-96-intel -0x3.65c04p+24L 0x0p+0L : 0x3.65c04p+24L : inexact-ok
+= hypot downward ldbl-96-m68k -0x3.65c04p+24L 0x0p+0L : 0x3.65c04p+24L : inexact-ok
+= hypot tonearest ldbl-96-m68k -0x3.65c04p+24L 0x0p+0L : 0x3.65c04p+24L : inexact-ok
+= hypot towardzero ldbl-96-m68k -0x3.65c04p+24L 0x0p+0L : 0x3.65c04p+24L : inexact-ok
+= hypot upward ldbl-96-m68k -0x3.65c04p+24L 0x0p+0L : 0x3.65c04p+24L : inexact-ok
+= hypot downward ldbl-128 -0x3.65c04p+24L 0x0p+0L : 0x3.65c04p+24L : inexact-ok
+= hypot tonearest ldbl-128 -0x3.65c04p+24L 0x0p+0L : 0x3.65c04p+24L : inexact-ok
+= hypot towardzero ldbl-128 -0x3.65c04p+24L 0x0p+0L : 0x3.65c04p+24L : inexact-ok
+= hypot upward ldbl-128 -0x3.65c04p+24L 0x0p+0L : 0x3.65c04p+24L : inexact-ok
+= hypot downward ldbl-128ibm -0x3.65c04p+24L 0x0p+0L : 0x3.65c04p+24L : inexact-ok
+= hypot tonearest ldbl-128ibm -0x3.65c04p+24L 0x0p+0L : 0x3.65c04p+24L : inexact-ok
+= hypot towardzero ldbl-128ibm -0x3.65c04p+24L 0x0p+0L : 0x3.65c04p+24L : inexact-ok
+= hypot upward ldbl-128ibm -0x3.65c04p+24L 0x0p+0L : 0x3.65c04p+24L : inexact-ok
+hypot 0.75 1.25
+= hypot downward flt-32 0xcp-4f 0x1.4p+0f : 0x1.752e5p+0f : inexact-ok
+= hypot tonearest flt-32 0xcp-4f 0x1.4p+0f : 0x1.752e5p+0f : inexact-ok
+= hypot towardzero flt-32 0xcp-4f 0x1.4p+0f : 0x1.752e5p+0f : inexact-ok
+= hypot upward flt-32 0xcp-4f 0x1.4p+0f : 0x1.752e52p+0f : inexact-ok
+= hypot downward dbl-64 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1p+0 : inexact-ok
+= hypot tonearest dbl-64 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a2p+0 : inexact-ok
+= hypot towardzero dbl-64 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1p+0 : inexact-ok
+= hypot upward dbl-64 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a2p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x1.752e50db3a3a1b1ap+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x1.752e50db3a3a1b1cp+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x1.752e50db3a3a1b1ap+0L : inexact-ok
+= hypot upward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x1.752e50db3a3a1b1cp+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x1.752e50db3a3a1b1ap+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x1.752e50db3a3a1b1cp+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x1.752e50db3a3a1b1ap+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x1.752e50db3a3a1b1cp+0L : inexact-ok
+= hypot downward ldbl-128 0xcp-4L 0x1.4p+0L : 0x1.752e50db3a3a1b1b33b0456f1fbap+0L : inexact-ok
+= hypot tonearest ldbl-128 0xcp-4L 0x1.4p+0L : 0x1.752e50db3a3a1b1b33b0456f1fbbp+0L : inexact-ok
+= hypot towardzero ldbl-128 0xcp-4L 0x1.4p+0L : 0x1.752e50db3a3a1b1b33b0456f1fbap+0L : inexact-ok
+= hypot upward ldbl-128 0xcp-4L 0x1.4p+0L : 0x1.752e50db3a3a1b1b33b0456f1fbbp+0L : inexact-ok
+= hypot downward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x1.752e50db3a3a1b1b33b0456f1f8p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x1.752e50db3a3a1b1b33b0456f1f8p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x1.752e50db3a3a1b1b33b0456f1f8p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x1.752e50db3a3a1b1b33b0456f2p+0L : inexact-ok
+hypot 1.0 0x1p-61
+= hypot downward flt-32 0x1p+0f 0x8p-64f : 0x1p+0f : inexact-ok
+= hypot tonearest flt-32 0x1p+0f 0x8p-64f : 0x1p+0f : inexact-ok
+= hypot towardzero flt-32 0x1p+0f 0x8p-64f : 0x1p+0f : inexact-ok
+= hypot upward flt-32 0x1p+0f 0x8p-64f : 0x1.000002p+0f : inexact-ok
+= hypot downward dbl-64 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot tonearest dbl-64 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot towardzero dbl-64 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot upward dbl-64 0x1p+0 0x8p-64 : 0x1.0000000000001p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0x1p+0L 0x8p-64L : 0x1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0x1p+0L 0x8p-64L : 0x1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0x1p+0L 0x8p-64L : 0x1p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0x1p+0L 0x8p-64L : 0x1.0000000000000002p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0x1p+0L 0x8p-64L : 0x1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0x1p+0L 0x8p-64L : 0x1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0x1p+0L 0x8p-64L : 0x1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0x1p+0L 0x8p-64L : 0x1.0000000000000002p+0L : inexact-ok
+= hypot downward ldbl-128 0x1p+0L 0x8p-64L : 0x1p+0L : inexact-ok
+= hypot tonearest ldbl-128 0x1p+0L 0x8p-64L : 0x1p+0L : inexact-ok
+= hypot towardzero ldbl-128 0x1p+0L 0x8p-64L : 0x1p+0L : inexact-ok
+= hypot upward ldbl-128 0x1p+0L 0x8p-64L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0x1p+0L 0x8p-64L : 0x1p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0x1p+0L 0x8p-64L : 0x1p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0x1p+0L 0x8p-64L : 0x1p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0x1p+0L 0x8p-64L : 0x1.000000000000000000000000008p+0L : inexact-ok
+hypot 0x1p+0 0x1.fp-129
+= hypot downward flt-32 0x1p+0f 0xf.8p-132f : 0x1p+0f : inexact-ok
+= hypot tonearest flt-32 0x1p+0f 0xf.8p-132f : 0x1p+0f : inexact-ok
+= hypot towardzero flt-32 0x1p+0f 0xf.8p-132f : 0x1p+0f : inexact-ok
+= hypot upward flt-32 0x1p+0f 0xf.8p-132f : 0x1.000002p+0f : inexact-ok
+= hypot downward dbl-64 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot tonearest dbl-64 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot towardzero dbl-64 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot upward dbl-64 0x1p+0 0xf.8p-132 : 0x1.0000000000001p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0x1p+0L 0xf.8p-132L : 0x1p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0x1p+0L 0xf.8p-132L : 0x1p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0x1p+0L 0xf.8p-132L : 0x1p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0x1p+0L 0xf.8p-132L : 0x1.0000000000000002p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0x1p+0L 0xf.8p-132L : 0x1p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0x1p+0L 0xf.8p-132L : 0x1p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0x1p+0L 0xf.8p-132L : 0x1p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0x1p+0L 0xf.8p-132L : 0x1.0000000000000002p+0L : inexact-ok
+= hypot downward ldbl-128 0x1p+0L 0xf.8p-132L : 0x1p+0L : inexact-ok
+= hypot tonearest ldbl-128 0x1p+0L 0xf.8p-132L : 0x1p+0L : inexact-ok
+= hypot towardzero ldbl-128 0x1p+0L 0xf.8p-132L : 0x1p+0L : inexact-ok
+= hypot upward ldbl-128 0x1p+0L 0xf.8p-132L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0x1p+0L 0xf.8p-132L : 0x1p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0x1p+0L 0xf.8p-132L : 0x1p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0x1p+0L 0xf.8p-132L : 0x1p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0x1p+0L 0xf.8p-132L : 0x1.000000000000000000000000008p+0L : inexact-ok
+hypot 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef0123456789ab8p-500 spurious-underflow:dbl-64
+= hypot downward flt-32 0x8p-152f 0x8p-152f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= hypot tonearest flt-32 0x8p-152f 0x8p-152f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= hypot towardzero flt-32 0x8p-152f 0x8p-152f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= hypot upward flt-32 0x8p-152f 0x8p-152f : 0x1p-148f : inexact-ok underflow errno-erange-ok
+= hypot downward dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok underflow-ok:dbl-64
+= hypot tonearest dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok underflow-ok:dbl-64
+= hypot towardzero dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok underflow-ok:dbl-64
+= hypot upward dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6485p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6485p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754bp-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3758p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward flt-32 0x8p-152f 0x0p+0f : 0x8p-152f : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest flt-32 0x8p-152f 0x0p+0f : 0x8p-152f : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero flt-32 0x8p-152f 0x0p+0f : 0x8p-152f : inexact-ok underflow-ok errno-erange-ok
+= hypot upward flt-32 0x8p-152f 0x0p+0f : 0x8p-152f : inexact-ok underflow-ok errno-erange-ok
+= hypot downward dbl-64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot tonearest dbl-64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot towardzero dbl-64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot upward dbl-64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward dbl-64 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot tonearest dbl-64 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot towardzero dbl-64 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot upward dbl-64 0x8p-152 0x1.23456789abcdfp-500 : 0x8.0000000000008p-152 : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x8p-152L 0x1.23456789abcdfp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x1.23456789abcdfp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x1.23456789abcdfp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x8p-152L 0x1.23456789abcdfp-500L : 0x8.000000000000001p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x8p-152L 0x1.23456789abcdfp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x1.23456789abcdfp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x1.23456789abcdfp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x8p-152L 0x1.23456789abcdfp-500L : 0x8.000000000000001p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x8p-152L 0x1.23456789abcdfp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x8p-152L 0x1.23456789abcdfp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x8p-152L 0x1.23456789abcdfp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x8p-152L 0x1.23456789abcdfp-500L : 0x8.0000000000000000000000000008p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x8p-152L 0x1.23456789abcdfp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x8p-152L 0x1.23456789abcdfp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x8p-152L 0x1.23456789abcdfp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x8p-152L 0x1.23456789abcdfp-500L : 0x8.00000000000000000000000004p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward dbl-64 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot tonearest dbl-64 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot towardzero dbl-64 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot upward dbl-64 0x8p-152 0x1.23456789abcdep-500 : 0x8.0000000000008p-152 : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x8p-152L 0x1.23456789abcdep-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x1.23456789abcdep-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x1.23456789abcdep-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x8p-152L 0x1.23456789abcdep-500L : 0x8.000000000000001p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x8p-152L 0x1.23456789abcdep-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x1.23456789abcdep-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x1.23456789abcdep-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x8p-152L 0x1.23456789abcdep-500L : 0x8.000000000000001p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x8p-152L 0x1.23456789abcdep-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x8p-152L 0x1.23456789abcdep-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x8p-152L 0x1.23456789abcdep-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x8p-152L 0x1.23456789abcdep-500L : 0x8.0000000000000000000000000008p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x8p-152L 0x1.23456789abcdep-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x8p-152L 0x1.23456789abcdep-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x8p-152L 0x1.23456789abcdep-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x8p-152L 0x1.23456789abcdep-500L : 0x8.00000000000000000000000004p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x8p-152L 0x1.23456789abcdef02p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x1.23456789abcdef02p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x1.23456789abcdef02p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x8p-152L 0x1.23456789abcdef02p-500L : 0x8.000000000000001p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x8p-152L 0x1.23456789abcdef02p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x1.23456789abcdef02p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x1.23456789abcdef02p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x8p-152L 0x1.23456789abcdef02p-500L : 0x8.000000000000001p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x8p-152L 0x1.23456789abcdef02p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x8p-152L 0x1.23456789abcdef02p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x8p-152L 0x1.23456789abcdef02p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x8p-152L 0x1.23456789abcdef02p-500L : 0x8.0000000000000000000000000008p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x8p-152L 0x1.23456789abcdef02p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x8p-152L 0x1.23456789abcdef02p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x8p-152L 0x1.23456789abcdef02p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x8p-152L 0x1.23456789abcdef02p-500L : 0x8.00000000000000000000000004p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x8p-152L 0x1.23456789abcdefp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x1.23456789abcdefp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x1.23456789abcdefp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x8p-152L 0x1.23456789abcdefp-500L : 0x8.000000000000001p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x8p-152L 0x1.23456789abcdefp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x1.23456789abcdefp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x1.23456789abcdefp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x8p-152L 0x1.23456789abcdefp-500L : 0x8.000000000000001p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x8p-152L 0x1.23456789abcdefp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x8p-152L 0x1.23456789abcdefp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x8p-152L 0x1.23456789abcdefp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x8p-152L 0x1.23456789abcdefp-500L : 0x8.0000000000000000000000000008p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x8p-152L 0x1.23456789abcdefp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x8p-152L 0x1.23456789abcdefp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x8p-152L 0x1.23456789abcdefp-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x8p-152L 0x1.23456789abcdefp-500L : 0x8.00000000000000000000000004p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x8p-152L 0x1.23456789abcdef0123456789ab8p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x8p-152L 0x1.23456789abcdef0123456789ab8p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x8p-152L 0x1.23456789abcdef0123456789ab8p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x8p-152L 0x1.23456789abcdef0123456789ab8p-500L : 0x8.0000000000000000000000000008p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x8p-152L 0x1.23456789abcdef0123456789ab8p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x8p-152L 0x1.23456789abcdef0123456789ab8p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x8p-152L 0x1.23456789abcdef0123456789ab8p-500L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x8p-152L 0x1.23456789abcdef0123456789ab8p-500L : 0x8.00000000000000000000000004p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward flt-32 0x0p+0f 0x8p-152f : 0x8p-152f : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest flt-32 0x0p+0f 0x8p-152f : 0x8p-152f : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero flt-32 0x0p+0f 0x8p-152f : 0x8p-152f : inexact-ok underflow-ok errno-erange-ok
+= hypot upward flt-32 0x0p+0f 0x8p-152f : 0x8p-152f : inexact-ok underflow-ok errno-erange-ok
+= hypot downward dbl-64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot tonearest dbl-64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot towardzero dbl-64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot upward dbl-64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : inexact-ok underflow-ok:dbl-64
+= hypot tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : inexact-ok underflow-ok:dbl-64
+= hypot towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : inexact-ok underflow-ok:dbl-64
+= hypot upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : inexact-ok underflow-ok:dbl-64
+= hypot downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok underflow-ok:dbl-64
+= hypot tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok underflow-ok:dbl-64
+= hypot towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok underflow-ok:dbl-64
+= hypot upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok underflow-ok:dbl-64
+= hypot downward dbl-64 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok underflow-ok:dbl-64
+= hypot tonearest dbl-64 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok underflow-ok:dbl-64
+= hypot towardzero dbl-64 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok underflow-ok:dbl-64
+= hypot upward dbl-64 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x0p+0L 0x1.23456789abcdfp-500L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x0p+0L 0x1.23456789abcdfp-500L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x0p+0L 0x1.23456789abcdfp-500L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x0p+0L 0x1.23456789abcdfp-500L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x0p+0L 0x1.23456789abcdfp-500L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x1.23456789abcdfp-500L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x1.23456789abcdfp-500L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x0p+0L 0x1.23456789abcdfp-500L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x0p+0L 0x1.23456789abcdfp-500L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x0p+0L 0x1.23456789abcdfp-500L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x0p+0L 0x1.23456789abcdfp-500L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x0p+0L 0x1.23456789abcdfp-500L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x0p+0L 0x1.23456789abcdfp-500L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x0p+0L 0x1.23456789abcdfp-500L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x0p+0L 0x1.23456789abcdfp-500L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x0p+0L 0x1.23456789abcdfp-500L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward dbl-64 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok underflow-ok:dbl-64
+= hypot tonearest dbl-64 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok underflow-ok:dbl-64
+= hypot towardzero dbl-64 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok underflow-ok:dbl-64
+= hypot upward dbl-64 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x0p+0L 0x1.23456789abcdep-500L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x0p+0L 0x1.23456789abcdep-500L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x0p+0L 0x1.23456789abcdep-500L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x0p+0L 0x1.23456789abcdep-500L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x0p+0L 0x1.23456789abcdep-500L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x1.23456789abcdep-500L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x1.23456789abcdep-500L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x0p+0L 0x1.23456789abcdep-500L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x0p+0L 0x1.23456789abcdep-500L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x0p+0L 0x1.23456789abcdep-500L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x0p+0L 0x1.23456789abcdep-500L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x0p+0L 0x1.23456789abcdep-500L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x0p+0L 0x1.23456789abcdep-500L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x0p+0L 0x1.23456789abcdep-500L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x0p+0L 0x1.23456789abcdep-500L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x0p+0L 0x1.23456789abcdep-500L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x0p+0L 0x1.23456789abcdef02p-500L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x0p+0L 0x1.23456789abcdef02p-500L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x0p+0L 0x1.23456789abcdef02p-500L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x0p+0L 0x1.23456789abcdef02p-500L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x0p+0L 0x1.23456789abcdef02p-500L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x1.23456789abcdef02p-500L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x1.23456789abcdef02p-500L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x0p+0L 0x1.23456789abcdef02p-500L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x0p+0L 0x1.23456789abcdef02p-500L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x0p+0L 0x1.23456789abcdef02p-500L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x0p+0L 0x1.23456789abcdef02p-500L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x0p+0L 0x1.23456789abcdef02p-500L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x0p+0L 0x1.23456789abcdef02p-500L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x0p+0L 0x1.23456789abcdef02p-500L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x0p+0L 0x1.23456789abcdef02p-500L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x0p+0L 0x1.23456789abcdef02p-500L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x0p+0L 0x1.23456789abcdefp-500L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x0p+0L 0x1.23456789abcdefp-500L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x0p+0L 0x1.23456789abcdefp-500L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x0p+0L 0x1.23456789abcdefp-500L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x0p+0L 0x1.23456789abcdefp-500L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x1.23456789abcdefp-500L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x1.23456789abcdefp-500L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x0p+0L 0x1.23456789abcdefp-500L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x0p+0L 0x1.23456789abcdefp-500L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x0p+0L 0x1.23456789abcdefp-500L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x0p+0L 0x1.23456789abcdefp-500L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x0p+0L 0x1.23456789abcdefp-500L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x0p+0L 0x1.23456789abcdefp-500L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x0p+0L 0x1.23456789abcdefp-500L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x0p+0L 0x1.23456789abcdefp-500L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x0p+0L 0x1.23456789abcdefp-500L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x0p+0L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.23456789abcdef0123456789ab8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x0p+0L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.23456789abcdef0123456789ab8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x0p+0L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.23456789abcdef0123456789ab8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x0p+0L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.23456789abcdef0123456789ab8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x0p+0L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.23456789abcdef0123456789ab8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x0p+0L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.23456789abcdef0123456789ab8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x0p+0L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.23456789abcdef0123456789ab8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x0p+0L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.23456789abcdef0123456789ab8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward dbl-64 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot tonearest dbl-64 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot towardzero dbl-64 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot upward dbl-64 0x1.23456789abcdfp-500 0x8p-152 : 0x8.0000000000008p-152 : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdfp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdfp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdfp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdfp-500L 0x8p-152L : 0x8.000000000000001p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdfp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdfp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdfp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdfp-500L 0x8p-152L : 0x8.000000000000001p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdfp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdfp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdfp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdfp-500L 0x8p-152L : 0x8.0000000000000000000000000008p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdfp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdfp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdfp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdfp-500L 0x8p-152L : 0x8.00000000000000000000000004p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward dbl-64 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok underflow-ok:dbl-64
+= hypot tonearest dbl-64 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok underflow-ok:dbl-64
+= hypot towardzero dbl-64 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok underflow-ok:dbl-64
+= hypot upward dbl-64 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdfp-500L 0x0p+0L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdfp-500L 0x0p+0L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdfp-500L 0x0p+0L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdfp-500L 0x0p+0L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdfp-500L 0x0p+0L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdfp-500L 0x0p+0L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdfp-500L 0x0p+0L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdfp-500L 0x0p+0L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdfp-500L 0x0p+0L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdfp-500L 0x0p+0L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdfp-500L 0x0p+0L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdfp-500L 0x0p+0L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdfp-500L 0x0p+0L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdfp-500L 0x0p+0L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdfp-500L 0x0p+0L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdfp-500L 0x0p+0L : 0x1.23456789abcdfp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward dbl-64 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4p-500 : inexact-ok underflow-ok:dbl-64
+= hypot tonearest dbl-64 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4p-500 : inexact-ok underflow-ok:dbl-64
+= hypot towardzero dbl-64 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4p-500 : inexact-ok underflow-ok:dbl-64
+= hypot upward dbl-64 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c5p-500 : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdfp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c4556p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdfp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c4558p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdfp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c4556p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdfp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c4558p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdfp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c4556p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdfp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c4558p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdfp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c4556p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdfp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c4558p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c4557b0c4775bcc8ep-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c4557b0c4775bcc8ep-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c4557b0c4775bcc8ep-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c4557b0c4775bcc8fp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c4557b0c4775bcc8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c4557b0c4775bcc8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c4557b0c4775bcc8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c4557b0c4775bcdp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward dbl-64 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3p-500 : inexact-ok underflow-ok:dbl-64
+= hypot tonearest dbl-64 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c4p-500 : inexact-ok underflow-ok:dbl-64
+= hypot towardzero dbl-64 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3p-500 : inexact-ok underflow-ok:dbl-64
+= hypot upward dbl-64 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c4p-500 : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdfp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3a06p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdfp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3a08p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdfp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3a06p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdfp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3a08p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdfp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3a06p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdfp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3a08p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdfp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3a06p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdfp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3a08p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3a07619137bde66dp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3a07619137bde66ep-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3a07619137bde66dp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3a07619137bde66ep-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3a07619137bde6p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3a07619137bde68p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3a07619137bde6p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3a07619137bde68p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdfp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c44a4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdfp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c44a4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdfp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c44a4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdfp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c44a6p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdfp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c44a4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdfp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c44a4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdfp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c44a4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdfp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c44a6p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c44a415db29c9e1e6p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c44a415db29c9e1e7p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c44a415db29c9e1e6p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c44a415db29c9e1e7p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c44a415db29c9e18p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c44a415db29c9e2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c44a415db29c9e18p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c44a415db29c9e2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdfp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c44a2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdfp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c44a2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdfp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c44a2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdfp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c44a4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdfp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c44a2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdfp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c44a2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdfp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c44a2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdfp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c44a4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c44a2abd14361ee29p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c44a2abd14361ee2ap-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c44a2abd14361ee29p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c44a2abd14361ee2ap-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c44a2abd14361eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c44a2abd14361eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c44a2abd14361eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c44a2abd14361ee8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c44a379c6f761e6f8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c44a379c6f761e6f9p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c44a379c6f761e6f8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdfp-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c44a379c6f761e6f9p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c44a379c6f761e68p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c44a379c6f761e7p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c44a379c6f761e68p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdfp-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c44a379c6f761e7p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward dbl-64 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot tonearest dbl-64 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot towardzero dbl-64 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok:dbl-64
+= hypot upward dbl-64 0x1.23456789abcdep-500 0x8p-152 : 0x8.0000000000008p-152 : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdep-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdep-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdep-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdep-500L 0x8p-152L : 0x8.000000000000001p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdep-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdep-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdep-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdep-500L 0x8p-152L : 0x8.000000000000001p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdep-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdep-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdep-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdep-500L 0x8p-152L : 0x8.0000000000000000000000000008p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdep-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdep-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdep-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdep-500L 0x8p-152L : 0x8.00000000000000000000000004p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward dbl-64 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok underflow-ok:dbl-64
+= hypot tonearest dbl-64 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok underflow-ok:dbl-64
+= hypot towardzero dbl-64 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok underflow-ok:dbl-64
+= hypot upward dbl-64 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdep-500L 0x0p+0L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdep-500L 0x0p+0L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdep-500L 0x0p+0L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdep-500L 0x0p+0L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdep-500L 0x0p+0L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdep-500L 0x0p+0L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdep-500L 0x0p+0L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdep-500L 0x0p+0L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdep-500L 0x0p+0L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdep-500L 0x0p+0L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdep-500L 0x0p+0L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdep-500L 0x0p+0L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdep-500L 0x0p+0L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdep-500L 0x0p+0L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdep-500L 0x0p+0L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdep-500L 0x0p+0L : 0x1.23456789abcdep-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward dbl-64 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3p-500 : inexact-ok underflow-ok:dbl-64
+= hypot tonearest dbl-64 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4p-500 : inexact-ok underflow-ok:dbl-64
+= hypot towardzero dbl-64 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3p-500 : inexact-ok underflow-ok:dbl-64
+= hypot upward dbl-64 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4p-500 : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdep-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c3a06p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdep-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c3a08p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdep-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c3a06p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdep-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c3a08p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdep-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c3a06p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdep-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c3a08p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdep-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c3a06p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdep-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c3a08p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c3a07619137bde66dp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c3a07619137bde66ep-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c3a07619137bde66dp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c3a07619137bde66ep-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c3a07619137bde6p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c3a07619137bde68p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c3a07619137bde6p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c3a07619137bde68p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward dbl-64 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2p-500 : inexact-ok underflow-ok:dbl-64
+= hypot tonearest dbl-64 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3p-500 : inexact-ok underflow-ok:dbl-64
+= hypot towardzero dbl-64 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2p-500 : inexact-ok underflow-ok:dbl-64
+= hypot upward dbl-64 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3p-500 : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdep-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c2eb6p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdep-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c2eb8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdep-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c2eb6p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdep-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c2eb8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdep-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c2eb6p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdep-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c2eb8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdep-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c2eb6p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdep-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c2eb8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c2eb7125df81ffffdp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c2eb7125df81ffffep-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c2eb7125df81ffffdp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c2eb7125df81ffffep-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c2eb7125df81fff8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c2eb7125df82p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c2eb7125df81fff8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c2eb7125df82p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdep-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdep-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c3954p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdep-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdep-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c3954p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdep-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdep-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c3954p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdep-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdep-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c3954p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c3953c6a7ea2bfbc1p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c3953c6a7ea2bfbc1p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c3953c6a7ea2bfbc1p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c3953c6a7ea2bfbc2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c3953c6a7ea2bfb8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c3953c6a7ea2bfcp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c3953c6a7ea2bfb8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c3953c6a7ea2bfcp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdep-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdep-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdep-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdep-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c3954p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdep-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdep-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdep-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdep-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c3954p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c39525c9e03c40804p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c39525c9e03c40804p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c39525c9e03c40804p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c39525c9e03c40805p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c39525c9e03c408p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c39525c9e03c408p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c39525c9e03c408p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c39525c9e03c4088p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c39532a93b7c400d3p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c39532a93b7c400d3p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c39532a93b7c400d3p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdep-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c39532a93b7c400d4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c39532a93b7c4008p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c39532a93b7c401p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c39532a93b7c4008p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdep-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c39532a93b7c401p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdef02p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdef02p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdef02p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdef02p-500L 0x8p-152L : 0x8.000000000000001p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x8p-152L : 0x8.000000000000001p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdef02p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdef02p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdef02p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdef02p-500L 0x8p-152L : 0x8.0000000000000000000000000008p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdef02p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdef02p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdef02p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdef02p-500L 0x8p-152L : 0x8.00000000000000000000000004p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdef02p-500L 0x0p+0L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdef02p-500L 0x0p+0L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdef02p-500L 0x0p+0L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdef02p-500L 0x0p+0L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x0p+0L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x0p+0L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x0p+0L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x0p+0L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdef02p-500L 0x0p+0L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdef02p-500L 0x0p+0L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdef02p-500L 0x0p+0L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdef02p-500L 0x0p+0L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdef02p-500L 0x0p+0L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdef02p-500L 0x0p+0L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdef02p-500L 0x0p+0L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdef02p-500L 0x0p+0L : 0x1.23456789abcdef02p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdef02p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdef02p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdef02p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdef02p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a6p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a6p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a415db29c9e1e6p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a415db29c9e1e7p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a415db29c9e1e6p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a415db29c9e1e7p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a415db29c9e18p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a415db29c9e2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a415db29c9e18p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a415db29c9e2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdef02p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdef02p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3954p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdef02p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdef02p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3954p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3954p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3954p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3953c6a7ea2bfbc1p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3953c6a7ea2bfbc1p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3953c6a7ea2bfbc1p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3953c6a7ea2bfbc2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3953c6a7ea2bfb8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3953c6a7ea2bfcp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3953c6a7ea2bfb8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3953c6a7ea2bfcp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdef02p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43fp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdef02p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43fp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdef02p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43fp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdef02p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43f2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43fp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43fp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43fp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43f2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43f07af1dc37f73ep-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43f07af1dc37f73fp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43f07af1dc37f73ep-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43f07af1dc37f73fp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43f07af1dc37f7p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43f07af1dc37f7p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43f07af1dc37f7p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43f07af1dc37f78p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdef02p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdef02p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43fp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdef02p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdef02p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43fp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43fp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdef02p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43fp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ef10e7f5d00381p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ef10e7f5d00382p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ef10e7f5d00381p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ef10e7f5d00382p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ef10e7f5d0038p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ef10e7f5d0038p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ef10e7f5d0038p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ef10e7f5d004p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43efdedda9cffc5p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43efdedda9cffc51p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43efdedda9cffc5p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdef02p-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43efdedda9cffc51p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43efdedda9cffcp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43efdedda9cffc8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43efdedda9cffcp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdef02p-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43efdedda9cffc8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdefp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdefp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdefp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdefp-500L 0x8p-152L : 0x8.000000000000001p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdefp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdefp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdefp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdefp-500L 0x8p-152L : 0x8.000000000000001p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdefp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdefp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdefp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdefp-500L 0x8p-152L : 0x8.0000000000000000000000000008p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdefp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdefp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdefp-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdefp-500L 0x8p-152L : 0x8.00000000000000000000000004p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdefp-500L 0x0p+0L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdefp-500L 0x0p+0L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdefp-500L 0x0p+0L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdefp-500L 0x0p+0L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdefp-500L 0x0p+0L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdefp-500L 0x0p+0L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdefp-500L 0x0p+0L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdefp-500L 0x0p+0L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdefp-500L 0x0p+0L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdefp-500L 0x0p+0L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdefp-500L 0x0p+0L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdefp-500L 0x0p+0L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdefp-500L 0x0p+0L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdefp-500L 0x0p+0L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdefp-500L 0x0p+0L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdefp-500L 0x0p+0L : 0x1.23456789abcdefp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdefp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdefp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdefp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdefp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdefp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdefp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdefp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a2p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdefp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a2abd14361ee29p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a2abd14361ee2ap-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a2abd14361ee29p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a2abd14361ee2ap-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a2abd14361eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a2abd14361eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a2abd14361eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a2abd14361ee8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdefp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdefp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdefp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdefp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3954p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdefp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdefp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdefp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3952p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdefp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c3954p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c39525c9e03c40804p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c39525c9e03c40804p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c39525c9e03c40804p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c39525c9e03c40805p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c39525c9e03c408p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c39525c9e03c408p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c39525c9e03c408p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c39525c9e03c4088p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdefp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdefp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43fp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdefp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdefp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43fp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdefp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdefp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43fp-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdefp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdefp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43fp-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43ef10e7f5d00381p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43ef10e7f5d00382p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43ef10e7f5d00381p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43ef10e7f5d00382p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43ef10e7f5d0038p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43ef10e7f5d0038p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43ef10e7f5d0038p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43ef10e7f5d004p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-intel 0x1.23456789abcdefp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ecp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-intel 0x1.23456789abcdefp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-intel 0x1.23456789abcdefp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ecp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-intel 0x1.23456789abcdefp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-96-m68k 0x1.23456789abcdefp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ecp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-96-m68k 0x1.23456789abcdefp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-96-m68k 0x1.23456789abcdefp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ecp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-96-m68k 0x1.23456789abcdefp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43eep-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43eda6de0f680fc5p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43eda6de0f680fc5p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43eda6de0f680fc5p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43eda6de0f680fc6p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43eda6de0f680f8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43eda6de0f681p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43eda6de0f680f8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43eda6de0f681p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43ee74d3c3680894p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43ee74d3c3680894p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43ee74d3c3680894p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdefp-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43ee74d3c3680895p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43ee74d3c368088p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43ee74d3c368088p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43ee74d3c368088p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdefp-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43ee74d3c36809p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x8p-152L : 0x8.0000000000000000000000000008p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x8p-152L : 0x8p-152L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x8p-152L : 0x8.00000000000000000000000004p-152L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x0p+0L : 0x1.23456789abcdef0123456789ab8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x0p+0L : 0x1.23456789abcdef0123456789ab8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x0p+0L : 0x1.23456789abcdef0123456789ab8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x0p+0L : 0x1.23456789abcdef0123456789ab8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x0p+0L : 0x1.23456789abcdef0123456789ab8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x0p+0L : 0x1.23456789abcdef0123456789ab8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x0p+0L : 0x1.23456789abcdef0123456789ab8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x0p+0L : 0x1.23456789abcdef0123456789ab8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a379c6f761e6f8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a379c6f761e6f9p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a379c6f761e6f8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a379c6f761e6f9p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a379c6f761e68p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a379c6f761e7p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a379c6f761e68p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdfp-500L : 0x1.9beb67fff20c44a379c6f761e7p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c39532a93b7c400d3p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c39532a93b7c400d3p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c39532a93b7c400d3p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c39532a93b7c400d4p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c39532a93b7c4008p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c39532a93b7c401p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c39532a93b7c4008p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdep-500L : 0x1.9beb67fff20c39532a93b7c401p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43efdedda9cffc5p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43efdedda9cffc51p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43efdedda9cffc5p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43efdedda9cffc51p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43efdedda9cffcp-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43efdedda9cffc8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43efdedda9cffcp-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdef02p-500L : 0x1.9beb67fff20c43efdedda9cffc8p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ee74d3c3680894p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ee74d3c3680894p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ee74d3c3680894p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ee74d3c3680895p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ee74d3c368088p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ee74d3c368088p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ee74d3c368088p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdefp-500L : 0x1.9beb67fff20c43ee74d3c36809p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43ef42c977680163p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43ef42c977680163p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43ef42c977680163p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43ef42c977680164p-500L : inexact-ok underflow-ok:dbl-64
+= hypot downward ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43ef42c9776801p-500L : inexact-ok underflow-ok:dbl-64
+= hypot tonearest ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43ef42c97768018p-500L : inexact-ok underflow-ok:dbl-64
+= hypot towardzero ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43ef42c9776801p-500L : inexact-ok underflow-ok:dbl-64
+= hypot upward ldbl-128ibm 0x1.23456789abcdef0123456789ab8p-500L 0x1.23456789abcdef0123456789ab8p-500L : 0x1.9beb67fff20c43ef42c97768018p-500L : inexact-ok underflow-ok:dbl-64
+hypot 0x3p125 0x4p125 no-test-inline:flt-32
+= hypot downward flt-32 0x6p+124f 0x8p+124f : 0xap+124f : no-test-inline:flt-32 inexact-ok
+= hypot tonearest flt-32 0x6p+124f 0x8p+124f : 0xap+124f : no-test-inline:flt-32 inexact-ok
+= hypot towardzero flt-32 0x6p+124f 0x8p+124f : 0xap+124f : no-test-inline:flt-32 inexact-ok
+= hypot upward flt-32 0x6p+124f 0x8p+124f : 0xap+124f : no-test-inline:flt-32 inexact-ok
+= hypot downward dbl-64 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:flt-32 inexact-ok
+= hypot tonearest dbl-64 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:flt-32 inexact-ok
+= hypot towardzero dbl-64 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:flt-32 inexact-ok
+= hypot upward dbl-64 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:flt-32 inexact-ok
+= hypot downward ldbl-96-intel 0x6p+124L 0x8p+124L : 0xap+124L : no-test-inline:flt-32 inexact-ok
+= hypot tonearest ldbl-96-intel 0x6p+124L 0x8p+124L : 0xap+124L : no-test-inline:flt-32 inexact-ok
+= hypot towardzero ldbl-96-intel 0x6p+124L 0x8p+124L : 0xap+124L : no-test-inline:flt-32 inexact-ok
+= hypot upward ldbl-96-intel 0x6p+124L 0x8p+124L : 0xap+124L : no-test-inline:flt-32 inexact-ok
+= hypot downward ldbl-96-m68k 0x6p+124L 0x8p+124L : 0xap+124L : no-test-inline:flt-32 inexact-ok
+= hypot tonearest ldbl-96-m68k 0x6p+124L 0x8p+124L : 0xap+124L : no-test-inline:flt-32 inexact-ok
+= hypot towardzero ldbl-96-m68k 0x6p+124L 0x8p+124L : 0xap+124L : no-test-inline:flt-32 inexact-ok
+= hypot upward ldbl-96-m68k 0x6p+124L 0x8p+124L : 0xap+124L : no-test-inline:flt-32 inexact-ok
+= hypot downward ldbl-128 0x6p+124L 0x8p+124L : 0xap+124L : no-test-inline:flt-32 inexact-ok
+= hypot tonearest ldbl-128 0x6p+124L 0x8p+124L : 0xap+124L : no-test-inline:flt-32 inexact-ok
+= hypot towardzero ldbl-128 0x6p+124L 0x8p+124L : 0xap+124L : no-test-inline:flt-32 inexact-ok
+= hypot upward ldbl-128 0x6p+124L 0x8p+124L : 0xap+124L : no-test-inline:flt-32 inexact-ok
+= hypot downward ldbl-128ibm 0x6p+124L 0x8p+124L : 0xap+124L : no-test-inline:flt-32 inexact-ok
+= hypot tonearest ldbl-128ibm 0x6p+124L 0x8p+124L : 0xap+124L : no-test-inline:flt-32 inexact-ok
+= hypot towardzero ldbl-128ibm 0x6p+124L 0x8p+124L : 0xap+124L : no-test-inline:flt-32 inexact-ok
+= hypot upward ldbl-128ibm 0x6p+124L 0x8p+124L : 0xap+124L : no-test-inline:flt-32 inexact-ok
+hypot 0x1.234566p-126 0x1.234566p-126 no-test-inline:flt-32
+= hypot downward flt-32 0x4.8d1598p-128f 0x4.8d1598p-128f : 0x6.6fad9p-128f : no-test-inline:flt-32 inexact-ok
+= hypot tonearest flt-32 0x4.8d1598p-128f 0x4.8d1598p-128f : 0x6.6fad98p-128f : no-test-inline:flt-32 inexact-ok
+= hypot towardzero flt-32 0x4.8d1598p-128f 0x4.8d1598p-128f : 0x6.6fad9p-128f : no-test-inline:flt-32 inexact-ok
+= hypot upward flt-32 0x4.8d1598p-128f 0x4.8d1598p-128f : 0x6.6fad98p-128f : no-test-inline:flt-32 inexact-ok
+= hypot downward dbl-64 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786cp-128 : no-test-inline:flt-32 inexact-ok
+= hypot tonearest dbl-64 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786cp-128 : no-test-inline:flt-32 inexact-ok
+= hypot towardzero dbl-64 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786cp-128 : no-test-inline:flt-32 inexact-ok
+= hypot upward dbl-64 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd787p-128 : no-test-inline:flt-32 inexact-ok
+= hypot downward ldbl-96-intel 0x4.8d1598p-128L 0x4.8d1598p-128L : 0x6.6fad974cd786d61p-128L : no-test-inline:flt-32 inexact-ok
+= hypot tonearest ldbl-96-intel 0x4.8d1598p-128L 0x4.8d1598p-128L : 0x6.6fad974cd786d61p-128L : no-test-inline:flt-32 inexact-ok
+= hypot towardzero ldbl-96-intel 0x4.8d1598p-128L 0x4.8d1598p-128L : 0x6.6fad974cd786d61p-128L : no-test-inline:flt-32 inexact-ok
+= hypot upward ldbl-96-intel 0x4.8d1598p-128L 0x4.8d1598p-128L : 0x6.6fad974cd786d618p-128L : no-test-inline:flt-32 inexact-ok
+= hypot downward ldbl-96-m68k 0x4.8d1598p-128L 0x4.8d1598p-128L : 0x6.6fad974cd786d61p-128L : no-test-inline:flt-32 inexact-ok
+= hypot tonearest ldbl-96-m68k 0x4.8d1598p-128L 0x4.8d1598p-128L : 0x6.6fad974cd786d61p-128L : no-test-inline:flt-32 inexact-ok
+= hypot towardzero ldbl-96-m68k 0x4.8d1598p-128L 0x4.8d1598p-128L : 0x6.6fad974cd786d61p-128L : no-test-inline:flt-32 inexact-ok
+= hypot upward ldbl-96-m68k 0x4.8d1598p-128L 0x4.8d1598p-128L : 0x6.6fad974cd786d618p-128L : no-test-inline:flt-32 inexact-ok
+= hypot downward ldbl-128 0x4.8d1598p-128L 0x4.8d1598p-128L : 0x6.6fad974cd786d6112b947029048p-128L : no-test-inline:flt-32 inexact-ok
+= hypot tonearest ldbl-128 0x4.8d1598p-128L 0x4.8d1598p-128L : 0x6.6fad974cd786d6112b947029048p-128L : no-test-inline:flt-32 inexact-ok
+= hypot towardzero ldbl-128 0x4.8d1598p-128L 0x4.8d1598p-128L : 0x6.6fad974cd786d6112b947029048p-128L : no-test-inline:flt-32 inexact-ok
+= hypot upward ldbl-128 0x4.8d1598p-128L 0x4.8d1598p-128L : 0x6.6fad974cd786d6112b9470290484p-128L : no-test-inline:flt-32 inexact-ok
+= hypot downward ldbl-128ibm 0x4.8d1598p-128L 0x4.8d1598p-128L : 0x6.6fad974cd786d6112b94702904p-128L : no-test-inline:flt-32 inexact-ok
+= hypot tonearest ldbl-128ibm 0x4.8d1598p-128L 0x4.8d1598p-128L : 0x6.6fad974cd786d6112b94702904p-128L : no-test-inline:flt-32 inexact-ok
+= hypot towardzero ldbl-128ibm 0x4.8d1598p-128L 0x4.8d1598p-128L : 0x6.6fad974cd786d6112b94702904p-128L : no-test-inline:flt-32 inexact-ok
+= hypot upward ldbl-128ibm 0x4.8d1598p-128L 0x4.8d1598p-128L : 0x6.6fad974cd786d6112b94702906p-128L : no-test-inline:flt-32 inexact-ok
+hypot 0x3p1021 0x4p1021 no-test-inline:dbl-64
+= hypot downward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0xf.fffffp+124f : no-test-inline:dbl-64 inexact-ok overflow errno-erange-ok
+= hypot tonearest flt-32 0xf.fffffp+124f 0xf.fffffp+124f : plus_infty : no-test-inline:dbl-64 inexact-ok overflow errno-erange
+= hypot towardzero flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0xf.fffffp+124f : no-test-inline:dbl-64 inexact-ok overflow errno-erange-ok
+= hypot upward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : plus_infty : no-test-inline:dbl-64 inexact-ok overflow errno-erange
+= hypot downward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : no-test-inline:dbl-64 inexact-ok
+= hypot upward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d67p+128 : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114p+128L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114p+128L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114p+128L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66116p+128L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114p+128L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114p+128L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114p+128L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66116p+128L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114f6320ab3ef82p+128L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114f6320ab3ef82p+128L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114f6320ab3ef82p+128L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114f6320ab3ef83p+128L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114f6320ab3ef8p+128L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114f6320ab3ef8p+128L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114f6320ab3ef8p+128L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114f6320ab3fp+128L : no-test-inline:dbl-64 inexact-ok
+= hypot downward dbl-64 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest dbl-64 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero dbl-64 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:dbl-64 inexact-ok
+= hypot upward dbl-64 0xf.fffffp+124 0x8p+1020 : 0x8.0000000000008p+1020 : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-96-intel 0xf.fffffp+124L 0x8p+1020L : 0x8p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p+1020L : 0x8p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p+1020L : 0x8p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-96-intel 0xf.fffffp+124L 0x8p+1020L : 0x8.000000000000001p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-96-m68k 0xf.fffffp+124L 0x8p+1020L : 0x8p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p+1020L : 0x8p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p+1020L : 0x8p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-96-m68k 0xf.fffffp+124L 0x8p+1020L : 0x8.000000000000001p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-128 0xf.fffffp+124L 0x8p+1020L : 0x8p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-128 0xf.fffffp+124L 0x8p+1020L : 0x8p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-128 0xf.fffffp+124L 0x8p+1020L : 0x8p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-128 0xf.fffffp+124L 0x8p+1020L : 0x8.0000000000000000000000000008p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-128ibm 0xf.fffffp+124L 0x8p+1020L : 0x8p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-128ibm 0xf.fffffp+124L 0x8p+1020L : 0x8p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-128ibm 0xf.fffffp+124L 0x8p+1020L : 0x8p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-128ibm 0xf.fffffp+124L 0x8p+1020L : 0x8.00000000000000000000000004p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot downward dbl-64 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest dbl-64 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero dbl-64 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:dbl-64 inexact-ok
+= hypot upward dbl-64 0x6p+1020 0xf.fffffp+124 : 0x6.0000000000004p+1020 : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-96-intel 0x6p+1020L 0xf.fffffp+124L : 0x6p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-96-intel 0x6p+1020L 0xf.fffffp+124L : 0x6p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-96-intel 0x6p+1020L 0xf.fffffp+124L : 0x6p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-96-intel 0x6p+1020L 0xf.fffffp+124L : 0x6.0000000000000008p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-96-m68k 0x6p+1020L 0xf.fffffp+124L : 0x6p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-96-m68k 0x6p+1020L 0xf.fffffp+124L : 0x6p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-96-m68k 0x6p+1020L 0xf.fffffp+124L : 0x6p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-96-m68k 0x6p+1020L 0xf.fffffp+124L : 0x6.0000000000000008p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-128 0x6p+1020L 0xf.fffffp+124L : 0x6p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-128 0x6p+1020L 0xf.fffffp+124L : 0x6p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-128 0x6p+1020L 0xf.fffffp+124L : 0x6p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-128 0x6p+1020L 0xf.fffffp+124L : 0x6.0000000000000000000000000004p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-128ibm 0x6p+1020L 0xf.fffffp+124L : 0x6p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-128ibm 0x6p+1020L 0xf.fffffp+124L : 0x6p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-128ibm 0x6p+1020L 0xf.fffffp+124L : 0x6p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-128ibm 0x6p+1020L 0xf.fffffp+124L : 0x6.00000000000000000000000002p+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot downward dbl-64 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest dbl-64 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero dbl-64 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:dbl-64 inexact-ok
+= hypot upward dbl-64 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-96-intel 0x6p+1020L 0x8p+1020L : 0xap+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-96-intel 0x6p+1020L 0x8p+1020L : 0xap+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-96-intel 0x6p+1020L 0x8p+1020L : 0xap+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-96-intel 0x6p+1020L 0x8p+1020L : 0xap+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-96-m68k 0x6p+1020L 0x8p+1020L : 0xap+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-96-m68k 0x6p+1020L 0x8p+1020L : 0xap+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-96-m68k 0x6p+1020L 0x8p+1020L : 0xap+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-96-m68k 0x6p+1020L 0x8p+1020L : 0xap+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-128 0x6p+1020L 0x8p+1020L : 0xap+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-128 0x6p+1020L 0x8p+1020L : 0xap+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-128 0x6p+1020L 0x8p+1020L : 0xap+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-128 0x6p+1020L 0x8p+1020L : 0xap+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-128ibm 0x6p+1020L 0x8p+1020L : 0xap+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-128ibm 0x6p+1020L 0x8p+1020L : 0xap+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-128ibm 0x6p+1020L 0x8p+1020L : 0xap+1020L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-128ibm 0x6p+1020L 0x8p+1020L : 0xap+1020L : no-test-inline:dbl-64 inexact-ok
+hypot 0x1p+0 0x0.3ep-1022 no-test-inline:dbl-64
+= hypot downward flt-32 0x1p+0f 0x8p-152f : 0x1p+0f : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest flt-32 0x1p+0f 0x8p-152f : 0x1p+0f : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero flt-32 0x1p+0f 0x8p-152f : 0x1p+0f : no-test-inline:dbl-64 inexact-ok
+= hypot upward flt-32 0x1p+0f 0x8p-152f : 0x1.000002p+0f : no-test-inline:dbl-64 inexact-ok
+= hypot downward dbl-64 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest dbl-64 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero dbl-64 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:dbl-64 inexact-ok
+= hypot upward dbl-64 0x1p+0 0x8p-152 : 0x1.0000000000001p+0 : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-96-intel 0x1p+0L 0x8p-152L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-96-intel 0x1p+0L 0x8p-152L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-96-intel 0x1p+0L 0x8p-152L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-96-intel 0x1p+0L 0x8p-152L : 0x1.0000000000000002p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x1.0000000000000002p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-128 0x1p+0L 0x8p-152L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-128 0x1p+0L 0x8p-152L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-128 0x1p+0L 0x8p-152L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-128 0x1p+0L 0x8p-152L : 0x1.0000000000000000000000000001p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-128ibm 0x1p+0L 0x8p-152L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-128ibm 0x1p+0L 0x8p-152L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-128ibm 0x1p+0L 0x8p-152L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-128ibm 0x1p+0L 0x8p-152L : 0x1.000000000000000000000000008p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot downward flt-32 0x1p+0f 0x0p+0f : 0x1p+0f : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest flt-32 0x1p+0f 0x0p+0f : 0x1p+0f : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero flt-32 0x1p+0f 0x0p+0f : 0x1p+0f : no-test-inline:dbl-64 inexact-ok
+= hypot upward flt-32 0x1p+0f 0x0p+0f : 0x1p+0f : no-test-inline:dbl-64 inexact-ok
+= hypot downward dbl-64 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest dbl-64 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero dbl-64 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:dbl-64 inexact-ok
+= hypot upward dbl-64 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-96-intel 0x1p+0L 0x0p+0L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-96-intel 0x1p+0L 0x0p+0L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-96-intel 0x1p+0L 0x0p+0L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-96-intel 0x1p+0L 0x0p+0L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-128 0x1p+0L 0x0p+0L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-128 0x1p+0L 0x0p+0L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-128 0x1p+0L 0x0p+0L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-128 0x1p+0L 0x0p+0L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-128ibm 0x1p+0L 0x0p+0L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-128ibm 0x1p+0L 0x0p+0L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-128ibm 0x1p+0L 0x0p+0L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-128ibm 0x1p+0L 0x0p+0L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot downward dbl-64 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest dbl-64 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero dbl-64 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:dbl-64 inexact-ok
+= hypot upward dbl-64 0x1p+0 0xf.8p-1028 : 0x1.0000000000001p+0 : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-96-intel 0x1p+0L 0xf.8p-1028L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-96-intel 0x1p+0L 0xf.8p-1028L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-96-intel 0x1p+0L 0xf.8p-1028L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-96-intel 0x1p+0L 0xf.8p-1028L : 0x1.0000000000000002p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-96-m68k 0x1p+0L 0xf.8p-1028L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-96-m68k 0x1p+0L 0xf.8p-1028L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-96-m68k 0x1p+0L 0xf.8p-1028L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-96-m68k 0x1p+0L 0xf.8p-1028L : 0x1.0000000000000002p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-128 0x1p+0L 0xf.8p-1028L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-128 0x1p+0L 0xf.8p-1028L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-128 0x1p+0L 0xf.8p-1028L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-128 0x1p+0L 0xf.8p-1028L : 0x1.0000000000000000000000000001p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot downward ldbl-128ibm 0x1p+0L 0xf.8p-1028L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot tonearest ldbl-128ibm 0x1p+0L 0xf.8p-1028L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot towardzero ldbl-128ibm 0x1p+0L 0xf.8p-1028L : 0x1p+0L : no-test-inline:dbl-64 inexact-ok
+= hypot upward ldbl-128ibm 0x1p+0L 0xf.8p-1028L : 0x1.000000000000000000000000008p+0L : no-test-inline:dbl-64 inexact-ok
+hypot 0x3p16381 0x4p16381 no-test-inline
+= hypot downward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok
+= hypot tonearest flt-32 0xf.fffffp+124f 0xf.fffffp+124f : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok
+= hypot upward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot downward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : no-test-inline inexact-ok
+= hypot tonearest dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : no-test-inline inexact-ok
+= hypot towardzero dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : no-test-inline inexact-ok
+= hypot upward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d67p+128 : no-test-inline inexact-ok
+= hypot downward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114p+128L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114p+128L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114p+128L : no-test-inline inexact-ok
+= hypot upward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66116p+128L : no-test-inline inexact-ok
+= hypot downward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114p+128L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114p+128L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114p+128L : no-test-inline inexact-ok
+= hypot upward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66116p+128L : no-test-inline inexact-ok
+= hypot downward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114f6320ab3ef82p+128L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114f6320ab3ef82p+128L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114f6320ab3ef82p+128L : no-test-inline inexact-ok
+= hypot upward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114f6320ab3ef83p+128L : no-test-inline inexact-ok
+= hypot downward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114f6320ab3ef8p+128L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114f6320ab3ef8p+128L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114f6320ab3ef8p+128L : no-test-inline inexact-ok
+= hypot upward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.6a09e4fde9d66114f6320ab3fp+128L : no-test-inline inexact-ok
+= hypot downward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot tonearest dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot upward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot downward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot upward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffff801p+1020L : no-test-inline inexact-ok
+= hypot downward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot upward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffff801p+1020L : no-test-inline inexact-ok
+= hypot downward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot upward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffff8000000000000008p+1020L : no-test-inline inexact-ok
+= hypot downward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot upward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffff80000000000004p+1020L : no-test-inline inexact-ok
+= hypot downward ldbl-96-intel 0xf.fffffp+124L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot upward ldbl-96-intel 0xf.fffffp+124L 0x8p+16380L : 0x8.000000000000001p+16380L : no-test-inline inexact-ok
+= hypot downward ldbl-96-m68k 0xf.fffffp+124L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot upward ldbl-96-m68k 0xf.fffffp+124L 0x8p+16380L : 0x8.000000000000001p+16380L : no-test-inline inexact-ok
+= hypot downward ldbl-128 0xf.fffffp+124L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128 0xf.fffffp+124L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128 0xf.fffffp+124L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot upward ldbl-128 0xf.fffffp+124L 0x8p+16380L : 0x8.0000000000000000000000000008p+16380L : no-test-inline inexact-ok
+= hypot downward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok
+= hypot upward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffc08p+1020L : no-test-inline inexact-ok
+= hypot downward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok
+= hypot upward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot downward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot upward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffff801p+1020L : no-test-inline inexact-ok
+= hypot downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffff801p+1020L : no-test-inline inexact-ok
+= hypot downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffff8000000000000008p+1020L : no-test-inline inexact-ok
+= hypot downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffff8p+1020L : no-test-inline inexact-ok
+= hypot upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffff80000000000004p+1020L : no-test-inline inexact-ok
+= hypot downward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok
+= hypot tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok
+= hypot upward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.6a09e667f3bcbdb8p+1024L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.6a09e667f3bcbdb8p+1024L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.6a09e667f3bcbdb8p+1024L : no-test-inline inexact-ok
+= hypot upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.6a09e667f3bcbdbap+1024L : no-test-inline inexact-ok
+= hypot downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.6a09e667f3bcbdb8p+1024L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.6a09e667f3bcbdb8p+1024L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.6a09e667f3bcbdb8p+1024L : no-test-inline inexact-ok
+= hypot upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.6a09e667f3bcbdbap+1024L : no-test-inline inexact-ok
+= hypot downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.6a09e667f3bcbdb863c7d3c9044dp+1024L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.6a09e667f3bcbdb863c7d3c9044dp+1024L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.6a09e667f3bcbdb863c7d3c9044dp+1024L : no-test-inline inexact-ok
+= hypot upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.6a09e667f3bcbdb863c7d3c9044ep+1024L : no-test-inline inexact-ok
+= hypot downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok
+= hypot tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok
+= hypot upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8.000000000000001p+16380L : no-test-inline inexact-ok
+= hypot downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8.000000000000001p+16380L : no-test-inline inexact-ok
+= hypot downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8.0000000000000000000000000008p+16380L : no-test-inline inexact-ok
+= hypot downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.6a09e667f3bcc08c7794a3b07db4p+1024L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.6a09e667f3bcc08c7794a3b07db5p+1024L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.6a09e667f3bcc08c7794a3b07db4p+1024L : no-test-inline inexact-ok
+= hypot upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.6a09e667f3bcc08c7794a3b07db5p+1024L : no-test-inline inexact-ok
+= hypot downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok
+= hypot tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok
+= hypot upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot downward ldbl-96-intel 0x6p+16380L 0xf.fffffp+124L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-intel 0x6p+16380L 0xf.fffffp+124L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-intel 0x6p+16380L 0xf.fffffp+124L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot upward ldbl-96-intel 0x6p+16380L 0xf.fffffp+124L : 0x6.0000000000000008p+16380L : no-test-inline inexact-ok
+= hypot downward ldbl-96-m68k 0x6p+16380L 0xf.fffffp+124L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-m68k 0x6p+16380L 0xf.fffffp+124L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-m68k 0x6p+16380L 0xf.fffffp+124L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot upward ldbl-96-m68k 0x6p+16380L 0xf.fffffp+124L : 0x6.0000000000000008p+16380L : no-test-inline inexact-ok
+= hypot downward ldbl-128 0x6p+16380L 0xf.fffffp+124L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128 0x6p+16380L 0xf.fffffp+124L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128 0x6p+16380L 0xf.fffffp+124L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot upward ldbl-128 0x6p+16380L 0xf.fffffp+124L : 0x6.0000000000000000000000000004p+16380L : no-test-inline inexact-ok
+= hypot downward ldbl-96-intel 0x6p+16380L 0xf.ffffffffffff8p+1020L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-intel 0x6p+16380L 0xf.ffffffffffff8p+1020L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-intel 0x6p+16380L 0xf.ffffffffffff8p+1020L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot upward ldbl-96-intel 0x6p+16380L 0xf.ffffffffffff8p+1020L : 0x6.0000000000000008p+16380L : no-test-inline inexact-ok
+= hypot downward ldbl-96-m68k 0x6p+16380L 0xf.ffffffffffff8p+1020L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-m68k 0x6p+16380L 0xf.ffffffffffff8p+1020L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-m68k 0x6p+16380L 0xf.ffffffffffff8p+1020L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot upward ldbl-96-m68k 0x6p+16380L 0xf.ffffffffffff8p+1020L : 0x6.0000000000000008p+16380L : no-test-inline inexact-ok
+= hypot downward ldbl-128 0x6p+16380L 0xf.ffffffffffff8p+1020L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128 0x6p+16380L 0xf.ffffffffffff8p+1020L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128 0x6p+16380L 0xf.ffffffffffff8p+1020L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot upward ldbl-128 0x6p+16380L 0xf.ffffffffffff8p+1020L : 0x6.0000000000000000000000000004p+16380L : no-test-inline inexact-ok
+= hypot downward ldbl-96-intel 0x6p+16380L 0x8p+16380L : 0xap+16380L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-intel 0x6p+16380L 0x8p+16380L : 0xap+16380L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-intel 0x6p+16380L 0x8p+16380L : 0xap+16380L : no-test-inline inexact-ok
+= hypot upward ldbl-96-intel 0x6p+16380L 0x8p+16380L : 0xap+16380L : no-test-inline inexact-ok
+= hypot downward ldbl-96-m68k 0x6p+16380L 0x8p+16380L : 0xap+16380L : no-test-inline inexact-ok
+= hypot tonearest ldbl-96-m68k 0x6p+16380L 0x8p+16380L : 0xap+16380L : no-test-inline inexact-ok
+= hypot towardzero ldbl-96-m68k 0x6p+16380L 0x8p+16380L : 0xap+16380L : no-test-inline inexact-ok
+= hypot upward ldbl-96-m68k 0x6p+16380L 0x8p+16380L : 0xap+16380L : no-test-inline inexact-ok
+= hypot downward ldbl-128 0x6p+16380L 0x8p+16380L : 0xap+16380L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128 0x6p+16380L 0x8p+16380L : 0xap+16380L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128 0x6p+16380L 0x8p+16380L : 0xap+16380L : no-test-inline inexact-ok
+= hypot upward ldbl-128 0x6p+16380L 0x8p+16380L : 0xap+16380L : no-test-inline inexact-ok
+= hypot downward ldbl-128 0x6p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128 0x6p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128 0x6p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x6p+16380L : no-test-inline inexact-ok
+= hypot upward ldbl-128 0x6p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x6.0000000000000000000000000004p+16380L : no-test-inline inexact-ok
+= hypot downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok
+= hypot upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffc08p+1020L : no-test-inline inexact-ok
+= hypot downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok
+= hypot upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.6a09e667f3bcc08c7794a3b07db4p+1024L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.6a09e667f3bcc08c7794a3b07db5p+1024L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.6a09e667f3bcc08c7794a3b07db4p+1024L : no-test-inline inexact-ok
+= hypot upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.6a09e667f3bcc08c7794a3b07db5p+1024L : no-test-inline inexact-ok
+= hypot downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok
+= hypot tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok
+= hypot upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+16380L : 0x8p+16380L : no-test-inline inexact-ok
+= hypot upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+16380L : 0x8.0000000000000000000000000008p+16380L : no-test-inline inexact-ok
+= hypot downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.6a09e667f3bcc3608b617397f716p+1024L : no-test-inline inexact-ok
+= hypot tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.6a09e667f3bcc3608b617397f717p+1024L : no-test-inline inexact-ok
+= hypot towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.6a09e667f3bcc3608b617397f716p+1024L : no-test-inline inexact-ok
+= hypot upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.6a09e667f3bcc3608b617397f717p+1024L : no-test-inline inexact-ok
+= hypot downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok
+= hypot tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok
+= hypot upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange
+hypot 0x1p-149 0x1p-149
+= hypot downward flt-32 0x8p-152f 0x8p-152f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= hypot tonearest flt-32 0x8p-152f 0x8p-152f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= hypot towardzero flt-32 0x8p-152f 0x8p-152f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= hypot upward flt-32 0x8p-152f 0x8p-152f : 0x1p-148f : inexact-ok underflow errno-erange-ok
+= hypot downward dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot tonearest dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot towardzero dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot upward dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot downward ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok
+= hypot upward ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6485p-152L : inexact-ok
+= hypot downward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok
+= hypot upward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6485p-152L : inexact-ok
+= hypot downward ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p-152L : inexact-ok
+= hypot tonearest ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p-152L : inexact-ok
+= hypot towardzero ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p-152L : inexact-ok
+= hypot upward ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754bp-152L : inexact-ok
+= hypot downward ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p-152L : inexact-ok
+= hypot tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p-152L : inexact-ok
+= hypot towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p-152L : inexact-ok
+= hypot upward ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3758p-152L : inexact-ok
+hypot 0x1p-1074 0x1p-1074
+= hypot downward flt-32 0x8p-152f 0x8p-152f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= hypot tonearest flt-32 0x8p-152f 0x8p-152f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= hypot towardzero flt-32 0x8p-152f 0x8p-152f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= hypot upward flt-32 0x8p-152f 0x8p-152f : 0x1p-148f : inexact-ok underflow errno-erange-ok
+= hypot downward dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot tonearest dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot towardzero dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot upward dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot downward ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok
+= hypot upward ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6485p-152L : inexact-ok
+= hypot downward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : inexact-ok
+= hypot upward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6485p-152L : inexact-ok
+= hypot downward ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p-152L : inexact-ok
+= hypot tonearest ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p-152L : inexact-ok
+= hypot towardzero ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p-152L : inexact-ok
+= hypot upward ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754bp-152L : inexact-ok
+= hypot downward ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p-152L : inexact-ok
+= hypot tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p-152L : inexact-ok
+= hypot towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p-152L : inexact-ok
+= hypot upward ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3758p-152L : inexact-ok
+= hypot downward flt-32 0x8p-152f 0x0p+0f : 0x8p-152f : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest flt-32 0x8p-152f 0x0p+0f : 0x8p-152f : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero flt-32 0x8p-152f 0x0p+0f : 0x8p-152f : inexact-ok underflow-ok errno-erange-ok
+= hypot upward flt-32 0x8p-152f 0x0p+0f : 0x8p-152f : inexact-ok underflow-ok errno-erange-ok
+= hypot downward dbl-64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest dbl-64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero dbl-64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward dbl-64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok
+= hypot upward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok
+= hypot downward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok
+= hypot upward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok
+= hypot downward ldbl-128 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok
+= hypot tonearest ldbl-128 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok
+= hypot towardzero ldbl-128 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok
+= hypot upward ldbl-128 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok
+= hypot downward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok
+= hypot tonearest ldbl-128ibm 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok
+= hypot towardzero ldbl-128ibm 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok
+= hypot upward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x8p-152L : inexact-ok
+= hypot downward dbl-64 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot tonearest dbl-64 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot towardzero dbl-64 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot upward dbl-64 0x8p-152 0x4p-1076 : 0x8.0000000000008p-152 : inexact-ok
+= hypot downward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x8p-152L : inexact-ok
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x8p-152L : inexact-ok
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x8p-152L : inexact-ok
+= hypot upward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x8.000000000000001p-152L : inexact-ok
+= hypot downward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x8p-152L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x8p-152L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x8p-152L : inexact-ok
+= hypot upward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x8.000000000000001p-152L : inexact-ok
+= hypot downward ldbl-128 0x8p-152L 0x4p-1076L : 0x8p-152L : inexact-ok
+= hypot tonearest ldbl-128 0x8p-152L 0x4p-1076L : 0x8p-152L : inexact-ok
+= hypot towardzero ldbl-128 0x8p-152L 0x4p-1076L : 0x8p-152L : inexact-ok
+= hypot upward ldbl-128 0x8p-152L 0x4p-1076L : 0x8.0000000000000000000000000008p-152L : inexact-ok
+= hypot downward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x8p-152L : inexact-ok
+= hypot tonearest ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x8p-152L : inexact-ok
+= hypot towardzero ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x8p-152L : inexact-ok
+= hypot upward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x8.00000000000000000000000004p-152L : inexact-ok
+= hypot downward flt-32 0x0p+0f 0x8p-152f : 0x8p-152f : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest flt-32 0x0p+0f 0x8p-152f : 0x8p-152f : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero flt-32 0x0p+0f 0x8p-152f : 0x8p-152f : inexact-ok underflow-ok errno-erange-ok
+= hypot upward flt-32 0x0p+0f 0x8p-152f : 0x8p-152f : inexact-ok underflow-ok errno-erange-ok
+= hypot downward dbl-64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest dbl-64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero dbl-64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward dbl-64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot downward ldbl-128 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot upward ldbl-128 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : inexact-ok
+= hypot tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : inexact-ok
+= hypot towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : inexact-ok
+= hypot upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : inexact-ok
+= hypot downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= hypot tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= hypot towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= hypot upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= hypot downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= hypot upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= hypot downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= hypot tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= hypot towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= hypot upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= hypot downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= hypot tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= hypot towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= hypot upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : inexact-ok
+= hypot downward dbl-64 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest dbl-64 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero dbl-64 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward dbl-64 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x4p-1076L : inexact-ok
+= hypot tonearest ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x4p-1076L : inexact-ok
+= hypot towardzero ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x4p-1076L : inexact-ok
+= hypot upward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x4p-1076L : inexact-ok
+= hypot downward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x4p-1076L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x4p-1076L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x4p-1076L : inexact-ok
+= hypot upward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x4p-1076L : inexact-ok
+= hypot downward ldbl-128 0x0p+0L 0x4p-1076L : 0x4p-1076L : inexact-ok
+= hypot tonearest ldbl-128 0x0p+0L 0x4p-1076L : 0x4p-1076L : inexact-ok
+= hypot towardzero ldbl-128 0x0p+0L 0x4p-1076L : 0x4p-1076L : inexact-ok
+= hypot upward ldbl-128 0x0p+0L 0x4p-1076L : 0x4p-1076L : inexact-ok
+= hypot downward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x4p-1076L : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x4p-1076L : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x4p-1076L : inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x4p-1076L : inexact-ok underflow-ok errno-erange-ok
+= hypot downward dbl-64 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest dbl-64 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero dbl-64 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward dbl-64 0x4p-1076 0x8p-152 : 0x8.0000000000008p-152 : inexact-ok
+= hypot downward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot tonearest ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot towardzero ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot upward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x8.000000000000001p-152L : inexact-ok
+= hypot downward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot upward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x8.000000000000001p-152L : inexact-ok
+= hypot downward ldbl-128 0x4p-1076L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot tonearest ldbl-128 0x4p-1076L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot towardzero ldbl-128 0x4p-1076L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot upward ldbl-128 0x4p-1076L 0x8p-152L : 0x8.0000000000000000000000000008p-152L : inexact-ok
+= hypot downward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot tonearest ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot towardzero ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x8p-152L : inexact-ok
+= hypot upward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x8.00000000000000000000000004p-152L : inexact-ok
+= hypot downward dbl-64 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest dbl-64 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero dbl-64 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward dbl-64 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x4p-1076L : inexact-ok
+= hypot tonearest ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x4p-1076L : inexact-ok
+= hypot towardzero ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x4p-1076L : inexact-ok
+= hypot upward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x4p-1076L : inexact-ok
+= hypot downward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x4p-1076L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x4p-1076L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x4p-1076L : inexact-ok
+= hypot upward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x4p-1076L : inexact-ok
+= hypot downward ldbl-128 0x4p-1076L 0x0p+0L : 0x4p-1076L : inexact-ok
+= hypot tonearest ldbl-128 0x4p-1076L 0x0p+0L : 0x4p-1076L : inexact-ok
+= hypot towardzero ldbl-128 0x4p-1076L 0x0p+0L : 0x4p-1076L : inexact-ok
+= hypot upward ldbl-128 0x4p-1076L 0x0p+0L : 0x4p-1076L : inexact-ok
+= hypot downward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x4p-1076L : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x4p-1076L : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x4p-1076L : inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x4p-1076L : inexact-ok underflow-ok errno-erange-ok
+= hypot downward dbl-64 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= hypot tonearest dbl-64 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= hypot towardzero dbl-64 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= hypot upward dbl-64 0x4p-1076 0x4p-1076 : 0x8p-1076 : inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : inexact-ok
+= hypot tonearest ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : inexact-ok
+= hypot towardzero ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : inexact-ok
+= hypot upward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32428p-1076L : inexact-ok
+= hypot downward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : inexact-ok
+= hypot tonearest ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : inexact-ok
+= hypot towardzero ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : inexact-ok
+= hypot upward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32428p-1076L : inexact-ok
+= hypot downward ldbl-128 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-1076L : inexact-ok
+= hypot tonearest ldbl-128 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-1076L : inexact-ok
+= hypot towardzero ldbl-128 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-1076L : inexact-ok
+= hypot upward ldbl-128 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-1076L : inexact-ok
+= hypot downward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8p-1076L : inexact-ok underflow errno-erange-ok
+hypot 0x1p-16445 0x1p-16445 no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k
+= hypot downward flt-32 0x8p-152f 0x8p-152f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest flt-32 0x8p-152f 0x8p-152f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero flt-32 0x8p-152f 0x8p-152f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward flt-32 0x8p-152f 0x8p-152f : 0x1p-148f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6485p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6485p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754bp-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3758p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward flt-32 0x8p-152f 0x0p+0f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest flt-32 0x8p-152f 0x0p+0f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero flt-32 0x8p-152f 0x0p+0f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward flt-32 0x8p-152f 0x0p+0f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward dbl-64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest dbl-64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero dbl-64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward dbl-64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128ibm 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128ibm 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward dbl-64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest dbl-64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero dbl-64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward dbl-64 0x8p-152 0x4p-1076 : 0x8.0000000000008p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x8p-152L 0x4p-1076L : 0x8.0000000000000000000000000008p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x8.00000000000000000000000004p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x8p-152L 0x8p-16448L : 0x8.0000000000000000000000000008p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward flt-32 0x0p+0f 0x8p-152f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest flt-32 0x0p+0f 0x8p-152f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero flt-32 0x0p+0f 0x8p-152f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward flt-32 0x0p+0f 0x8p-152f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward dbl-64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest dbl-64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero dbl-64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward dbl-64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward dbl-64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest dbl-64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero dbl-64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward dbl-64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-128 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-128 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-128 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-128 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward dbl-64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest dbl-64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero dbl-64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward dbl-64 0x4p-1076 0x8p-152 : 0x8.0000000000008p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x4p-1076L 0x8p-152L : 0x8.0000000000000000000000000008p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x8.00000000000000000000000004p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward dbl-64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest dbl-64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero dbl-64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward dbl-64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward dbl-64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest dbl-64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero dbl-64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward dbl-64 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32428p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32428p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x4.0000000000000008p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x4.0000000000000008p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x4p-1076L 0x8p-16448L : 0x4.0000000000000000000000000004p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x8p-16448L 0x8p-152L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x8p-16448L 0x8p-152L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x8p-16448L 0x8p-152L : 0x8.0000000000000000000000000008p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-96-intel 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-96-intel 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-96-intel 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-96-m68k 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-96-m68k 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-96-m68k 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-96-m68k 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-128 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-128 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-128 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-128 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-96-intel 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x8p-16448L 0x4p-1076L : 0x4.0000000000000008p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x8p-16448L 0x4p-1076L : 0x4.0000000000000008p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x8p-16448L 0x4p-1076L : 0x4.0000000000000000000000000004p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x8p-16448L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-96-intel 0x8p-16448L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-96-intel 0x8p-16448L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-96-intel 0x8p-16448L 0x8p-16448L : 0x1p-16444L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-96-m68k 0x8p-16448L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-96-m68k 0x8p-16448L 0x8p-16448L : 0xcp-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-96-m68k 0x8p-16448L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-96-m68k 0x8p-16448L 0x8p-16448L : 0xcp-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-128 0x8p-16448L 0x8p-16448L : 0xb.504f333f9de4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-128 0x8p-16448L 0x8p-16448L : 0xb.504f333f9de8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-128 0x8p-16448L 0x8p-16448L : 0xb.504f333f9de4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-128 0x8p-16448L 0x8p-16448L : 0xb.504f333f9de8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+hypot 0x1p-16494 0x1p-16494 no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k
+= hypot downward flt-32 0x8p-152f 0x8p-152f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest flt-32 0x8p-152f 0x8p-152f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero flt-32 0x8p-152f 0x8p-152f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward flt-32 0x8p-152f 0x8p-152f : 0x1p-148f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward dbl-64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x8p-152L 0x8p-152L : 0xb.504f333f9de6485p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xb.504f333f9de6485p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754bp-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128ibm 0x8p-152L 0x8p-152L : 0xb.504f333f9de6484597d89b3758p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward flt-32 0x8p-152f 0x0p+0f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest flt-32 0x8p-152f 0x0p+0f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero flt-32 0x8p-152f 0x0p+0f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward flt-32 0x8p-152f 0x0p+0f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward dbl-64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest dbl-64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero dbl-64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward dbl-64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128ibm 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128ibm 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward dbl-64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest dbl-64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero dbl-64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward dbl-64 0x8p-152 0x4p-1076 : 0x8.0000000000008p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x8p-152L 0x4p-1076L : 0x8.0000000000000000000000000008p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x8.00000000000000000000000004p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x8p-152L 0x8p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x8p-152L 0x8p-16448L : 0x8.0000000000000000000000000008p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x8p-152L 0x4p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x8p-152L 0x4p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x8p-152L 0x4p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x8p-152L 0x4p-16448L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x8p-152L 0x4p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x8p-152L 0x4p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x8p-152L 0x4p-16448L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x8p-152L 0x4p-16448L : 0x8.0000000000000000000000000008p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x8p-152L 0x4p-16496L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x8p-152L 0x4p-16496L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x8p-152L 0x4p-16496L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x8p-152L 0x4p-16496L : 0x8.0000000000000000000000000008p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward flt-32 0x0p+0f 0x8p-152f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest flt-32 0x0p+0f 0x8p-152f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero flt-32 0x0p+0f 0x8p-152f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward flt-32 0x0p+0f 0x8p-152f : 0x8p-152f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward dbl-64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest dbl-64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero dbl-64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward dbl-64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward dbl-64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest dbl-64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero dbl-64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward dbl-64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-128 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-128 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-128 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-128 0x0p+0L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-96-m68k 0x0p+0L 0x4p-16448L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-96-m68k 0x0p+0L 0x4p-16448L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-96-m68k 0x0p+0L 0x4p-16448L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-96-m68k 0x0p+0L 0x4p-16448L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-128 0x0p+0L 0x4p-16448L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-128 0x0p+0L 0x4p-16448L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-128 0x0p+0L 0x4p-16448L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-128 0x0p+0L 0x4p-16448L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-128 0x0p+0L 0x4p-16496L : 0x4p-16496L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-128 0x0p+0L 0x4p-16496L : 0x4p-16496L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-128 0x0p+0L 0x4p-16496L : 0x4p-16496L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-128 0x0p+0L 0x4p-16496L : 0x4p-16496L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward dbl-64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest dbl-64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero dbl-64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward dbl-64 0x4p-1076 0x8p-152 : 0x8.0000000000008p-152 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x4p-1076L 0x8p-152L : 0x8.0000000000000000000000000008p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x8.00000000000000000000000004p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward dbl-64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest dbl-64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero dbl-64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward dbl-64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward dbl-64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest dbl-64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero dbl-64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward dbl-64 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32428p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef3242p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32428p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x4p-1076L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x4.0000000000000008p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x4.0000000000000008p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x4p-1076L 0x8p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x4p-1076L 0x8p-16448L : 0x4.0000000000000000000000000004p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x4p-1076L 0x4p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x4p-1076L 0x4p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x4p-1076L 0x4p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x4p-1076L 0x4p-16448L : 0x4.0000000000000008p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x4p-1076L 0x4p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x4p-1076L 0x4p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x4p-1076L 0x4p-16448L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x4p-1076L 0x4p-16448L : 0x4.0000000000000000000000000004p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x4p-1076L 0x4p-16496L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x4p-1076L 0x4p-16496L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x4p-1076L 0x4p-16496L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x4p-1076L 0x4p-16496L : 0x4.0000000000000000000000000004p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x8p-16448L 0x8p-152L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x8p-16448L 0x8p-152L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x8p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x8p-16448L 0x8p-152L : 0x8.0000000000000000000000000008p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-96-intel 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-96-intel 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-96-intel 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-96-m68k 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-96-m68k 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-96-m68k 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-96-m68k 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-128 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-128 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-128 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-128 0x8p-16448L 0x0p+0L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-96-intel 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-intel 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-intel 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-intel 0x8p-16448L 0x4p-1076L : 0x4.0000000000000008p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x8p-16448L 0x4p-1076L : 0x4.0000000000000008p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x8p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x8p-16448L 0x4p-1076L : 0x4.0000000000000000000000000004p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-intel 0x8p-16448L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-96-intel 0x8p-16448L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-96-intel 0x8p-16448L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-96-intel 0x8p-16448L 0x8p-16448L : 0x1p-16444L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-96-m68k 0x8p-16448L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-96-m68k 0x8p-16448L 0x8p-16448L : 0xcp-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-96-m68k 0x8p-16448L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-96-m68k 0x8p-16448L 0x8p-16448L : 0xcp-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-128 0x8p-16448L 0x8p-16448L : 0xb.504f333f9de4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-128 0x8p-16448L 0x8p-16448L : 0xb.504f333f9de8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-128 0x8p-16448L 0x8p-16448L : 0xb.504f333f9de4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-128 0x8p-16448L 0x8p-16448L : 0xb.504f333f9de8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-96-m68k 0x8p-16448L 0x4p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-96-m68k 0x8p-16448L 0x4p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-96-m68k 0x8p-16448L 0x4p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-96-m68k 0x8p-16448L 0x4p-16448L : 0xcp-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-128 0x8p-16448L 0x4p-16448L : 0x8.f1bbcdcbfa5p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-128 0x8p-16448L 0x4p-16448L : 0x8.f1bbcdcbfa54p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-128 0x8p-16448L 0x4p-16448L : 0x8.f1bbcdcbfa5p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-128 0x8p-16448L 0x4p-16448L : 0x8.f1bbcdcbfa54p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-128 0x8p-16448L 0x4p-16496L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-128 0x8p-16448L 0x4p-16496L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-128 0x8p-16448L 0x4p-16496L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-128 0x8p-16448L 0x4p-16496L : 0x8.000000000004p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-96-m68k 0x4p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x4p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x4p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x4p-16448L 0x8p-152L : 0x8.000000000000001p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x4p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x4p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x4p-16448L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x4p-16448L 0x8p-152L : 0x8.0000000000000000000000000008p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x4p-16448L 0x0p+0L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-96-m68k 0x4p-16448L 0x0p+0L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-96-m68k 0x4p-16448L 0x0p+0L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-96-m68k 0x4p-16448L 0x0p+0L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-128 0x4p-16448L 0x0p+0L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-128 0x4p-16448L 0x0p+0L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-128 0x4p-16448L 0x0p+0L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-128 0x4p-16448L 0x0p+0L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-96-m68k 0x4p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-96-m68k 0x4p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-96-m68k 0x4p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-96-m68k 0x4p-16448L 0x4p-1076L : 0x4.0000000000000008p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x4p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x4p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x4p-16448L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x4p-16448L 0x4p-1076L : 0x4.0000000000000000000000000004p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-96-m68k 0x4p-16448L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-96-m68k 0x4p-16448L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-96-m68k 0x4p-16448L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-96-m68k 0x4p-16448L 0x8p-16448L : 0xcp-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-128 0x4p-16448L 0x8p-16448L : 0x8.f1bbcdcbfa5p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-128 0x4p-16448L 0x8p-16448L : 0x8.f1bbcdcbfa54p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-128 0x4p-16448L 0x8p-16448L : 0x8.f1bbcdcbfa5p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-128 0x4p-16448L 0x8p-16448L : 0x8.f1bbcdcbfa54p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-96-m68k 0x4p-16448L 0x4p-16448L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-96-m68k 0x4p-16448L 0x4p-16448L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-96-m68k 0x4p-16448L 0x4p-16448L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-96-m68k 0x4p-16448L 0x4p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-128 0x4p-16448L 0x4p-16448L : 0x5.a827999fcefp-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-128 0x4p-16448L 0x4p-16448L : 0x5.a827999fcef4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-128 0x4p-16448L 0x4p-16448L : 0x5.a827999fcefp-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-128 0x4p-16448L 0x4p-16448L : 0x5.a827999fcef4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-128 0x4p-16448L 0x4p-16496L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-128 0x4p-16448L 0x4p-16496L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-128 0x4p-16448L 0x4p-16496L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-128 0x4p-16448L 0x4p-16496L : 0x4.000000000004p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-128 0x4p-16496L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x4p-16496L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x4p-16496L 0x8p-152L : 0x8p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x4p-16496L 0x8p-152L : 0x8.0000000000000000000000000008p-152L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x4p-16496L 0x0p+0L : 0x4p-16496L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ldbl-128 0x4p-16496L 0x0p+0L : 0x4p-16496L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ldbl-128 0x4p-16496L 0x0p+0L : 0x4p-16496L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot upward ldbl-128 0x4p-16496L 0x0p+0L : 0x4p-16496L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow-ok errno-erange-ok
+= hypot downward ldbl-128 0x4p-16496L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot tonearest ldbl-128 0x4p-16496L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot towardzero ldbl-128 0x4p-16496L 0x4p-1076L : 0x4p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot upward ldbl-128 0x4p-16496L 0x4p-1076L : 0x4.0000000000000000000000000004p-1076L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok
+= hypot downward ldbl-128 0x4p-16496L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-128 0x4p-16496L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-128 0x4p-16496L 0x8p-16448L : 0x8p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-128 0x4p-16496L 0x8p-16448L : 0x8.000000000004p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-128 0x4p-16496L 0x4p-16448L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-128 0x4p-16496L 0x4p-16448L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-128 0x4p-16496L 0x4p-16448L : 0x4p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-128 0x4p-16496L 0x4p-16448L : 0x4.000000000004p-16448L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot downward ldbl-128 0x4p-16496L 0x4p-16496L : 0x4p-16496L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot tonearest ldbl-128 0x4p-16496L 0x4p-16496L : 0x4p-16496L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot towardzero ldbl-128 0x4p-16496L 0x4p-16496L : 0x4p-16496L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
+= hypot upward ldbl-128 0x4p-16496L 0x4p-16496L : 0x8p-16496L : no-test-inline xfail:ldbl-96-intel xfail:ldbl-96-m68k inexact-ok underflow errno-erange-ok
j0 -1.0
= j0 downward flt-32 -0x1p+0f : 0xc.3e3fep-4f : inexact-ok
= j0 tonearest flt-32 -0x1p+0f : 0xc.3e3ffp-4f : inexact-ok
@@ -12703,6 +25814,29479 @@ log2 0.75
= log2 tonearest ldbl-128ibm 0xcp-4L : -0x6.a3fe5c6042978605ff4edf5f98p-4L : inexact-ok
= log2 towardzero ldbl-128ibm 0xcp-4L : -0x6.a3fe5c6042978605ff4edf5f96p-4L : inexact-ok
= log2 upward ldbl-128ibm 0xcp-4L : -0x6.a3fe5c6042978605ff4edf5f96p-4L : inexact-ok
+pow 0 0
+= pow downward flt-32 0x0p+0f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0x0p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x0p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x0p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x0p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+pow 0 -0
+= pow downward flt-32 0x0p+0f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+pow -0 0
+= pow downward flt-32 -0x0p+0f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x0p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x0p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x0p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x0p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x0p+0L : 0x1p+0L : inexact-ok
+pow -0 -0
+= pow downward flt-32 -0x0p+0f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L -0x0p+0L : 0x1p+0L : inexact-ok
+pow 10 0
+= pow downward flt-32 0xap+0f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0xap+0f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0xap+0f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0xap+0f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0xap+0 0x0p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0xap+0 0x0p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xap+0 0x0p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0xap+0 0x0p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+pow 10 -0
+= pow downward flt-32 0xap+0f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0xap+0f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0xap+0f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0xap+0f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0xap+0 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0xap+0 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xap+0 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0xap+0 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+pow -10 0
+= pow downward flt-32 -0xap+0f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0xap+0f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0xap+0f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0xap+0f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0xap+0 0x0p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0xap+0 0x0p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0xap+0 0x0p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0xap+0 0x0p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0xap+0L 0x0p+0L : 0x1p+0L : inexact-ok
+pow -10 -0
+= pow downward flt-32 -0xap+0f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0xap+0f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0xap+0f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0xap+0f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0xap+0 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0xap+0 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0xap+0 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0xap+0 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0xap+0L -0x0p+0L : 0x1p+0L : inexact-ok
+pow 1 1
+= pow downward flt-32 0x1p+0f 0x1p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x1p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x1p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x1p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x1p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x1p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x1p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x1p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x1p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x1p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x1p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x1p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x1p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x1p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x1p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x1p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x1p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x1p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x1p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x1p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x1p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x1p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x1p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x1p+0L : 0x1p+0L : inexact-ok
+pow 1 -1
+= pow downward flt-32 0x1p+0f -0x1p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f -0x1p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f -0x1p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f -0x1p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x1p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x1p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x1p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x1p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x1p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x1p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x1p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x1p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x1p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x1p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x1p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x1p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x1p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x1p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x1p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x1p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x1p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x1p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x1p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x1p+0L : 0x1p+0L : inexact-ok
+pow 1 1.25
+= pow downward flt-32 0x1p+0f 0x1.4p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x1.4p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x1.4p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x1.4p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x1.4p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x1.4p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x1.4p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x1.4p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x1.4p+0L : 0x1p+0L : inexact-ok
+pow 1 -1.25
+= pow downward flt-32 0x1p+0f -0x1.4p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f -0x1.4p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f -0x1.4p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f -0x1.4p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x1.4p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x1.4p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x1.4p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x1.4p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x1.4p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x1.4p+0L : 0x1p+0L : inexact-ok
+pow 1 0x1p62
+= pow downward flt-32 0x1p+0f 0x4p+60f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x4p+60f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x4p+60f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x4p+60f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x4p+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x4p+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x4p+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x4p+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x4p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x4p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x4p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x4p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x4p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x4p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x4p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x4p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x4p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x4p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x4p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x4p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x4p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x4p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x4p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x4p+60L : 0x1p+0L : inexact-ok
+pow 1 0x1p63
+= pow downward flt-32 0x1p+0f 0x8p+60f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x8p+60f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x8p+60f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x8p+60f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x8p+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x8p+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x8p+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x8p+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x8p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x8p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x8p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x8p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x8p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x8p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x8p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x8p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x8p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x8p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x8p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x8p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x8p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x8p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x8p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x8p+60L : 0x1p+0L : inexact-ok
+pow 1 0x1p64
+= pow downward flt-32 0x1p+0f 0x1p+64f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x1p+64f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x1p+64f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x1p+64f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x1p+64 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x1p+64 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x1p+64 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x1p+64 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+pow 1 0x1p72
+= pow downward flt-32 0x1p+0f 0x1p+72f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x1p+72f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x1p+72f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x1p+72f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x1p+72 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x1p+72 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x1p+72 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x1p+72 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x1p+72L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x1p+72L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x1p+72L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x1p+72L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x1p+72L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x1p+72L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x1p+72L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x1p+72L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x1p+72L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x1p+72L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x1p+72L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x1p+72L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x1p+72L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x1p+72L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x1p+72L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x1p+72L : 0x1p+0L : inexact-ok
+pow 1 min_subnorm
+= pow downward flt-32 0x1p+0f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x8p-152 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x8p-152 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x8p-152 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+pow 1 -min_subnorm
+= pow downward flt-32 0x1p+0f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+pow 32.75 0
+= pow downward flt-32 0x2.0cp+4f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x2.0cp+4f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x2.0cp+4f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x2.0cp+4f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x2.0cp+4 0x0p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x2.0cp+4 0x0p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x2.0cp+4 0x0p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x2.0cp+4 0x0p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+pow 32.75 -0
+= pow downward flt-32 0x2.0cp+4f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x2.0cp+4f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x2.0cp+4f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x2.0cp+4f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x2.0cp+4 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x2.0cp+4 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x2.0cp+4 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x2.0cp+4 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+pow -32.75 0
+= pow downward flt-32 -0x2.0cp+4f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x2.0cp+4f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x2.0cp+4f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x2.0cp+4f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x2.0cp+4 0x0p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x2.0cp+4 0x0p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x2.0cp+4 0x0p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x2.0cp+4 0x0p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x2.0cp+4L 0x0p+0L : 0x1p+0L : inexact-ok
+pow -32.75 -0
+= pow downward flt-32 -0x2.0cp+4f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x2.0cp+4f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x2.0cp+4f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x2.0cp+4f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x2.0cp+4 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x2.0cp+4 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x2.0cp+4 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x2.0cp+4 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x2.0cp+4L -0x0p+0L : 0x1p+0L : inexact-ok
+pow 0x1p72 0
+= pow downward flt-32 0x1p+72f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+72f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+72f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+72f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+72 0x0p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+72 0x0p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+72 0x0p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+72 0x0p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+72L 0x0p+0L : 0x1p+0L : inexact-ok
+pow 0x1p72 -0
+= pow downward flt-32 0x1p+72f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+72f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+72f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+72f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+72 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+72 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+72 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+72 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+72L -0x0p+0L : 0x1p+0L : inexact-ok
+pow 0x1p-72 0
+= pow downward flt-32 0x1p-72f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p-72f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p-72f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p-72f 0x0p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p-72 0x0p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p-72 0x0p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p-72 0x0p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p-72 0x0p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p-72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p-72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p-72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p-72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p-72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p-72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p-72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p-72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p-72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p-72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p-72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p-72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p-72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p-72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p-72L 0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p-72L 0x0p+0L : 0x1p+0L : inexact-ok
+pow 0x1p-72 -0
+= pow downward flt-32 0x1p-72f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p-72f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p-72f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p-72f -0x0p+0f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p-72 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p-72 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p-72 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p-72 -0x0p+0 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p-72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p-72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p-72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p-72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p-72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p-72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p-72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p-72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p-72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p-72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p-72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p-72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p-72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p-72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p-72L -0x0p+0L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p-72L -0x0p+0L : 0x1p+0L : inexact-ok
+pow 0x1p72 0x1p72
+= pow downward flt-32 0x1p+72f 0x1p+72f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0x1p+72f 0x1p+72f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0x1p+72f 0x1p+72f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0x1p+72f 0x1p+72f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1p+72 0x1p+72 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1p+72 0x1p+72 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1p+72 0x1p+72 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1p+72 0x1p+72 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1p+72L 0x1p+72L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1p+72L 0x1p+72L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1p+72L 0x1p+72L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1p+72L 0x1p+72L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1p+72L 0x1p+72L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1p+72L 0x1p+72L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1p+72L 0x1p+72L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1p+72L 0x1p+72L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1p+72L 0x1p+72L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1p+72L 0x1p+72L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1p+72L 0x1p+72L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1p+72L 0x1p+72L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1p+72L 0x1p+72L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1p+72L 0x1p+72L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1p+72L 0x1p+72L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1p+72L 0x1p+72L : plus_infty : inexact-ok overflow errno-erange
+pow 10 -0x1p72
+= pow downward flt-32 0xap+0f -0x1p+72f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0xap+0f -0x1p+72f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0xap+0f -0x1p+72f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0xap+0f -0x1p+72f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xap+0 -0x1p+72 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xap+0 -0x1p+72 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xap+0 -0x1p+72 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xap+0 -0x1p+72 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xap+0L -0x1p+72L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xap+0L -0x1p+72L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xap+0L -0x1p+72L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xap+0L -0x1p+72L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xap+0L -0x1p+72L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xap+0L -0x1p+72L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xap+0L -0x1p+72L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xap+0L -0x1p+72L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xap+0L -0x1p+72L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xap+0L -0x1p+72L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xap+0L -0x1p+72L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xap+0L -0x1p+72L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xap+0L -0x1p+72L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xap+0L -0x1p+72L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xap+0L -0x1p+72L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xap+0L -0x1p+72L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow max max
+= pow downward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0xf.fffffp+124f 0xf.fffffp+124f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.fffffp+124 0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp+124L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp+124L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+pow 10 -max
+= pow downward flt-32 0xap+0f -0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0xap+0f -0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0xap+0f -0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0xap+0f -0xf.fffffp+124f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xap+0 -0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xap+0 -0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xap+0 -0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xap+0 -0xf.fffffp+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xap+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xap+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xap+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xap+0L -0xf.fffffp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xap+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xap+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xap+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xap+0L -0xf.fffffp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xap+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xap+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xap+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xap+0L -0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xap+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xap+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xap+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xap+0L -0xf.fffffp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xap+0 -0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xap+0 -0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xap+0 -0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xap+0 -0xf.ffffffffffff8p+1020 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xap+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xap+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xap+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xap+0L -0xf.ffffffffffff8p+1020L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xap+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xap+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xap+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xap+0L -0xf.ffffffffffff8p+1020L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xap+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xap+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xap+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xap+0L -0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xap+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xap+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xap+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xap+0L -0xf.ffffffffffff8p+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xap+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xap+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xap+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xap+0L -0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xap+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xap+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xap+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xap+0L -0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xap+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xap+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xap+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xap+0L -0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xap+0L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xap+0L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xap+0L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xap+0L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xap+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xap+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xap+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xap+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xap+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xap+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xap+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xap+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow 0 1
+= pow downward flt-32 0x0p+0f 0x1p+0f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0x1p+0f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0x1p+0f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0x1p+0f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0x1p+0 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x1p+0 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x1p+0 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x1p+0 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L : inexact-ok
+pow 0 11
+= pow downward flt-32 0x0p+0f 0xbp+0f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0xbp+0f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0xbp+0f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0xbp+0f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0xbp+0 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0xbp+0 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0xbp+0 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0xbp+0 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0xbp+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0xbp+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0xbp+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0xbp+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0xbp+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0xbp+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0xbp+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0xbp+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xbp+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xbp+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xbp+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xbp+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0xbp+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0xbp+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0xbp+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0xbp+0L : 0x0p+0L : inexact-ok
+pow -0 1
+= pow downward flt-32 -0x0p+0f 0x1p+0f : -0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x1p+0f : -0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x1p+0f : -0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x1p+0f : -0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x1p+0 : -0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x1p+0 : -0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x1p+0 : -0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x1p+0 : -0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x1p+0L : -0x0p+0L : inexact-ok
+pow -0 11
+= pow downward flt-32 -0x0p+0f 0xbp+0f : -0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0xbp+0f : -0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0xbp+0f : -0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0xbp+0f : -0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0xbp+0 : -0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0xbp+0 : -0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0xbp+0 : -0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0xbp+0 : -0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0xbp+0L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0xbp+0L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0xbp+0L : -0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0xbp+0L : -0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0xbp+0L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0xbp+0L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0xbp+0L : -0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0xbp+0L : -0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xbp+0L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xbp+0L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xbp+0L : -0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xbp+0L : -0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0xbp+0L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0xbp+0L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0xbp+0L : -0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0xbp+0L : -0x0p+0L : inexact-ok
+pow 0 2
+= pow downward flt-32 0x0p+0f 0x2p+0f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0x2p+0f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0x2p+0f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0x2p+0f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0x2p+0 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x2p+0 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x2p+0 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x2p+0 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+pow 0 11.1
+= pow downward flt-32 0x0p+0f 0xb.1999ap+0f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0xb.1999ap+0f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0xb.1999ap+0f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0xb.1999ap+0f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0xb.1999ap+0 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0xb.1999ap+0 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0xb.1999ap+0 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0xb.1999ap+0 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow downward flt-32 0x0p+0f 0xb.19999p+0f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0xb.19999p+0f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0xb.19999p+0f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0xb.19999p+0f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0xb.19999p+0 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0xb.19999p+0 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0xb.19999p+0 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0xb.19999p+0 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 0x0p+0 0xb.19999999999ap+0 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0xb.19999999999ap+0 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0xb.19999999999ap+0 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0xb.19999999999ap+0 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 0x0p+0 0xb.1999999999998p+0 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0xb.1999999999998p+0 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0xb.1999999999998p+0 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0xb.1999999999998p+0 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xb.19999999999999999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xb.19999999999999999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xb.19999999999999999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xb.19999999999999999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xb.1999999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xb.1999999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xb.1999999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xb.1999999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xb.1999999999999999999999999cp+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xb.1999999999999999999999999cp+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xb.1999999999999999999999999cp+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xb.1999999999999999999999999cp+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0xb.1999999999999999999999999cp+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0xb.1999999999999999999999999cp+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0xb.1999999999999999999999999cp+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0xb.1999999999999999999999999cp+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xb.19999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xb.19999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xb.19999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xb.19999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0xb.19999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0xb.19999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0xb.19999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0xb.19999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+pow -0 2
+= pow downward flt-32 -0x0p+0f 0x2p+0f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x2p+0f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x2p+0f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x2p+0f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x2p+0 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x2p+0 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x2p+0 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x2p+0 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x2p+0L : 0x0p+0L : inexact-ok
+pow -0 11.1
+= pow downward flt-32 -0x0p+0f 0xb.1999ap+0f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0xb.1999ap+0f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0xb.1999ap+0f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0xb.1999ap+0f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0xb.1999ap+0 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0xb.1999ap+0 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0xb.1999ap+0 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0xb.1999ap+0 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0xb.1999ap+0L : 0x0p+0L : inexact-ok
+= pow downward flt-32 -0x0p+0f 0xb.19999p+0f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0xb.19999p+0f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0xb.19999p+0f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0xb.19999p+0f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0xb.19999p+0 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0xb.19999p+0 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0xb.19999p+0 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0xb.19999p+0 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0xb.19999p+0L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 -0x0p+0 0xb.19999999999ap+0 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0xb.19999999999ap+0 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0xb.19999999999ap+0 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0xb.19999999999ap+0 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0xb.19999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 -0x0p+0 0xb.1999999999998p+0 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0xb.1999999999998p+0 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0xb.1999999999998p+0 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0xb.1999999999998p+0 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0xb.1999999999998p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0xb.19999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0xb.199999999999999p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xb.19999999999999999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xb.19999999999999999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xb.19999999999999999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xb.19999999999999999999999999ap+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xb.1999999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xb.1999999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xb.1999999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xb.1999999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xb.1999999999999999999999999cp+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xb.1999999999999999999999999cp+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xb.1999999999999999999999999cp+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xb.1999999999999999999999999cp+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0xb.1999999999999999999999999cp+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0xb.1999999999999999999999999cp+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0xb.1999999999999999999999999cp+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0xb.1999999999999999999999999cp+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xb.19999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xb.19999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xb.19999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xb.19999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0xb.19999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0xb.19999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0xb.19999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0xb.19999999999999999999999998p+0L : 0x0p+0L : inexact-ok
+pow 0.0 27
+= pow downward flt-32 0x0p+0f 0x1.bp+4f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0x1.bp+4f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0x1.bp+4f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0x1.bp+4f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0x1.bp+4 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x1.bp+4 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x1.bp+4 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x1.bp+4 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x1.bp+4L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x1.bp+4L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x1.bp+4L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x1.bp+4L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x1.bp+4L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x1.bp+4L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x1.bp+4L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x1.bp+4L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x1.bp+4L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x1.bp+4L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x1.bp+4L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x1.bp+4L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x1.bp+4L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x1.bp+4L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x1.bp+4L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x1.bp+4L : 0x0p+0L : inexact-ok
+pow 0.0 0xffffff
+= pow downward flt-32 0x0p+0f 0xf.fffffp+20f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0xf.fffffp+20f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0xf.fffffp+20f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0xf.fffffp+20f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0xf.fffffp+20 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0xf.fffffp+20 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0xf.fffffp+20 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0xf.fffffp+20 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0xf.fffffp+20L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0xf.fffffp+20L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0xf.fffffp+20L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0xf.fffffp+20L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0xf.fffffp+20L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0xf.fffffp+20L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0xf.fffffp+20L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0xf.fffffp+20L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xf.fffffp+20L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xf.fffffp+20L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xf.fffffp+20L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xf.fffffp+20L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0xf.fffffp+20L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0xf.fffffp+20L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0xf.fffffp+20L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0xf.fffffp+20L : 0x0p+0L : inexact-ok
+pow 0.0 0x1.fffffffffffffp+52
+= pow downward flt-32 0x0p+0f 0x2p+52f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0x2p+52f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0x2p+52f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0x2p+52f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0x2p+52 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x2p+52 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x2p+52 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x2p+52 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow downward flt-32 0x0p+0f 0x1.fffffep+52f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0x1.fffffep+52f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0x1.fffffep+52f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0x1.fffffep+52f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0x1.fffffep+52 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x1.fffffep+52 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x1.fffffep+52 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x1.fffffep+52 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 0x0p+0 0x1.fffffffffffffp+52 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x1.fffffffffffffp+52 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x1.fffffffffffffp+52 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x1.fffffffffffffp+52 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x1.fffffffffffffp+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x1.fffffffffffffp+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x1.fffffffffffffp+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x1.fffffffffffffp+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x1.fffffffffffffp+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x1.fffffffffffffp+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x1.fffffffffffffp+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x1.fffffffffffffp+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x1.fffffffffffffp+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x1.fffffffffffffp+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x1.fffffffffffffp+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x1.fffffffffffffp+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x1.fffffffffffffp+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x1.fffffffffffffp+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x1.fffffffffffffp+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x1.fffffffffffffp+52L : 0x0p+0L : inexact-ok
+pow 0.0 0x1.fffffffffffffffep+63
+= pow downward flt-32 0x0p+0f 0x1p+64f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0x1p+64f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0x1p+64f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0x1p+64f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0x1p+64 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x1p+64 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x1p+64 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x1p+64 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow downward flt-32 0x0p+0f 0xf.fffffp+60f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0xf.fffffp+60f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0xf.fffffp+60f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0xf.fffffp+60f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0xf.fffffp+60 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0xf.fffffp+60 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0xf.fffffp+60 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0xf.fffffp+60 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 0x0p+0 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0xf.fffffffffffffffp+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0xf.fffffffffffffffp+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0xf.fffffffffffffffp+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0xf.fffffffffffffffp+60L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0xf.fffffffffffffffp+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0xf.fffffffffffffffp+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0xf.fffffffffffffffp+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0xf.fffffffffffffffp+60L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xf.fffffffffffffffp+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xf.fffffffffffffffp+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xf.fffffffffffffffp+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xf.fffffffffffffffp+60L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0xf.fffffffffffffffp+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0xf.fffffffffffffffp+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0xf.fffffffffffffffp+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0xf.fffffffffffffffp+60L : 0x0p+0L : inexact-ok
+pow 0.0 0x1.ffffffffffffffffffffffffff8p+105
+= pow downward flt-32 0x0p+0f 0x4p+104f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0x4p+104f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0x4p+104f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0x4p+104f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0x4p+104 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x4p+104 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x4p+104 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x4p+104 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow downward flt-32 0x0p+0f 0x3.fffffcp+104f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0x3.fffffcp+104f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0x3.fffffcp+104f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0x3.fffffcp+104f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0x3.fffffcp+104 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x3.fffffcp+104 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x3.fffffcp+104 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x3.fffffcp+104 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 0x0p+0 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x3.ffffffffffffffffffffffffffp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x3.ffffffffffffffffffffffffffp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x3.ffffffffffffffffffffffffffp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x3.ffffffffffffffffffffffffffp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x3.ffffffffffffffffffffffffffp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x3.ffffffffffffffffffffffffffp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x3.ffffffffffffffffffffffffffp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x3.ffffffffffffffffffffffffffp+104L : 0x0p+0L : inexact-ok
+pow 0.0 0x1.ffffffffffffffffffffffffffffp+112
+= pow downward flt-32 0x0p+0f 0x2p+112f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0x2p+112f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0x2p+112f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0x2p+112f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0x2p+112 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x2p+112 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x2p+112 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x2p+112 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow downward flt-32 0x0p+0f 0x1.fffffep+112f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0x1.fffffep+112f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0x1.fffffep+112f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0x1.fffffep+112f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0x1.fffffep+112 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x1.fffffep+112 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x1.fffffep+112 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x1.fffffep+112 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 0x0p+0 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x1.ffffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x1.ffffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x1.ffffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x1.ffffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok
+pow -0 27
+= pow downward flt-32 -0x0p+0f 0x1.bp+4f : -0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x1.bp+4f : -0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x1.bp+4f : -0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x1.bp+4f : -0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x1.bp+4 : -0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x1.bp+4 : -0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x1.bp+4 : -0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x1.bp+4 : -0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x1.bp+4L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x1.bp+4L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x1.bp+4L : -0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x1.bp+4L : -0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x1.bp+4L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x1.bp+4L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x1.bp+4L : -0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x1.bp+4L : -0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x1.bp+4L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x1.bp+4L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x1.bp+4L : -0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x1.bp+4L : -0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x1.bp+4L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x1.bp+4L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x1.bp+4L : -0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x1.bp+4L : -0x0p+0L : inexact-ok
+pow -0 0xffffff
+= pow downward flt-32 -0x0p+0f 0xf.fffffp+20f : -0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0xf.fffffp+20f : -0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0xf.fffffp+20f : -0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0xf.fffffp+20f : -0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0xf.fffffp+20 : -0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0xf.fffffp+20 : -0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0xf.fffffp+20 : -0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0xf.fffffp+20 : -0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0xf.fffffp+20L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0xf.fffffp+20L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0xf.fffffp+20L : -0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0xf.fffffp+20L : -0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0xf.fffffp+20L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0xf.fffffp+20L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0xf.fffffp+20L : -0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0xf.fffffp+20L : -0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xf.fffffp+20L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xf.fffffp+20L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xf.fffffp+20L : -0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xf.fffffp+20L : -0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0xf.fffffp+20L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0xf.fffffp+20L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0xf.fffffp+20L : -0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0xf.fffffp+20L : -0x0p+0L : inexact-ok
+pow -0 0x1fffffe
+= pow downward flt-32 -0x0p+0f 0x1.fffffep+24f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x1.fffffep+24f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x1.fffffep+24f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x1.fffffep+24f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x1.fffffep+24 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x1.fffffep+24 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x1.fffffep+24 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x1.fffffep+24 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x1.fffffep+24L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x1.fffffep+24L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x1.fffffep+24L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x1.fffffep+24L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x1.fffffep+24L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x1.fffffep+24L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x1.fffffep+24L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x1.fffffep+24L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x1.fffffep+24L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x1.fffffep+24L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x1.fffffep+24L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x1.fffffep+24L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x1.fffffep+24L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x1.fffffep+24L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x1.fffffep+24L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x1.fffffep+24L : 0x0p+0L : inexact-ok
+pow -0 0x1.fffffffffffffp+52
+= pow downward flt-32 -0x0p+0f 0x2p+52f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x2p+52f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x2p+52f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x2p+52f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x2p+52 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x2p+52 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x2p+52 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x2p+52 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x2p+52L : 0x0p+0L : inexact-ok
+= pow downward flt-32 -0x0p+0f 0x1.fffffep+52f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x1.fffffep+52f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x1.fffffep+52f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x1.fffffep+52f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x1.fffffep+52 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x1.fffffep+52 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x1.fffffep+52 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x1.fffffep+52 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x1.fffffep+52L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok
+pow -0 0x1.fffffffffffffp+53
+= pow downward flt-32 -0x0p+0f 0x4p+52f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x4p+52f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x4p+52f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x4p+52f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x4p+52 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x4p+52 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x4p+52 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x4p+52 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x4p+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x4p+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x4p+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x4p+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x4p+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x4p+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x4p+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x4p+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x4p+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x4p+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x4p+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x4p+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x4p+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x4p+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x4p+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x4p+52L : 0x0p+0L : inexact-ok
+= pow downward flt-32 -0x0p+0f 0x3.fffffcp+52f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x3.fffffcp+52f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x3.fffffcp+52f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x3.fffffcp+52f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x3.fffffcp+52 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x3.fffffcp+52 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x3.fffffcp+52 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x3.fffffcp+52 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok
+pow -0 0x1.fffffffffffffffep+63
+= pow downward flt-32 -0x0p+0f 0x1p+64f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x1p+64f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x1p+64f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x1p+64f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x1p+64 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x1p+64 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x1p+64 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x1p+64 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x1p+64L : 0x0p+0L : inexact-ok
+= pow downward flt-32 -0x0p+0f 0xf.fffffp+60f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0xf.fffffp+60f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0xf.fffffp+60f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0xf.fffffp+60f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0xf.fffffp+60 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0xf.fffffp+60 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0xf.fffffp+60 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0xf.fffffp+60 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0xf.fffffp+60L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 -0x0p+0 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok
+pow -0 0x1.fffffffffffffffep+64
+= pow downward flt-32 -0x0p+0f 0x2p+64f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x2p+64f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x2p+64f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x2p+64f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x2p+64 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x2p+64 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x2p+64 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x2p+64 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x2p+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x2p+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x2p+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x2p+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x2p+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x2p+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x2p+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x2p+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x2p+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x2p+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x2p+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x2p+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x2p+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x2p+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x2p+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x2p+64L : 0x0p+0L : inexact-ok
+= pow downward flt-32 -0x0p+0f 0x1.fffffep+64f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x1.fffffep+64f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x1.fffffep+64f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x1.fffffep+64f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x1.fffffep+64 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x1.fffffep+64 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x1.fffffep+64 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x1.fffffep+64 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x1.fffffep+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x1.fffffep+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x1.fffffep+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x1.fffffep+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x1.fffffep+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x1.fffffep+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x1.fffffep+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x1.fffffep+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x1.fffffep+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x1.fffffep+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x1.fffffep+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x1.fffffep+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x1.fffffep+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x1.fffffep+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x1.fffffep+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x1.fffffep+64L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok
+pow -0 0x1.ffffffffffffffffffffffffff8p+105
+= pow downward flt-32 -0x0p+0f 0x4p+104f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x4p+104f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x4p+104f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x4p+104f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x4p+104 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x4p+104 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x4p+104 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x4p+104 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x4p+104L : 0x0p+0L : inexact-ok
+= pow downward flt-32 -0x0p+0f 0x3.fffffcp+104f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x3.fffffcp+104f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x3.fffffcp+104f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x3.fffffcp+104f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x3.fffffcp+104 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x3.fffffcp+104 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x3.fffffcp+104 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x3.fffffcp+104 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok
+pow -0 0x1.ffffffffffffffffffffffffff8p+106
+= pow downward flt-32 -0x0p+0f 0x8p+104f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x8p+104f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x8p+104f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x8p+104f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x8p+104 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x8p+104 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x8p+104 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x8p+104 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x8p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x8p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x8p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x8p+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x8p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x8p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x8p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x8p+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x8p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x8p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x8p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x8p+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x8p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x8p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x8p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x8p+104L : 0x0p+0L : inexact-ok
+= pow downward flt-32 -0x0p+0f 0x7.fffff8p+104f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x7.fffff8p+104f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x7.fffff8p+104f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x7.fffff8p+104f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x7.fffff8p+104 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x7.fffff8p+104 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x7.fffff8p+104 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x7.fffff8p+104 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok
+pow -0 0x1.ffffffffffffffffffffffffffffp+112
+= pow downward flt-32 -0x0p+0f 0x2p+112f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x2p+112f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x2p+112f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x2p+112f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x2p+112 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x2p+112 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x2p+112 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x2p+112 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x2p+112L : 0x0p+0L : inexact-ok
+= pow downward flt-32 -0x0p+0f 0x1.fffffep+112f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x1.fffffep+112f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x1.fffffep+112f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x1.fffffep+112f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x1.fffffep+112 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x1.fffffep+112 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x1.fffffep+112 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x1.fffffep+112 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x1.fffffep+112L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok
+pow -0 0x1.ffffffffffffffffffffffffffffp+113
+= pow downward flt-32 -0x0p+0f 0x4p+112f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x4p+112f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x4p+112f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x4p+112f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x4p+112 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x4p+112 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x4p+112 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x4p+112 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x4p+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x4p+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x4p+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x4p+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x4p+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x4p+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x4p+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x4p+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x4p+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x4p+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x4p+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x4p+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x4p+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x4p+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x4p+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x4p+112L : 0x0p+0L : inexact-ok
+= pow downward flt-32 -0x0p+0f 0x3.fffffcp+112f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x3.fffffcp+112f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x3.fffffcp+112f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x3.fffffcp+112f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x3.fffffcp+112 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x3.fffffcp+112 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x3.fffffcp+112 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x3.fffffcp+112 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok
+pow 0.0 4
+= pow downward flt-32 0x0p+0f 0x4p+0f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0x4p+0f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0x4p+0f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0x4p+0f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0x4p+0 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x4p+0 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x4p+0 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x4p+0 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+pow 0.0 0x1p24
+= pow downward flt-32 0x0p+0f 0x1p+24f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0x1p+24f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0x1p+24f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0x1p+24f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0x1p+24 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x1p+24 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x1p+24 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x1p+24 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+pow 0.0 0x1p127
+= pow downward flt-32 0x0p+0f 0x8p+124f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0x8p+124f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0x8p+124f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0x8p+124f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0x8p+124 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x8p+124 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x8p+124 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x8p+124 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+pow 0.0 max
+= pow downward flt-32 0x0p+0f 0xf.fffffp+124f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0xf.fffffp+124f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0xf.fffffp+124f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0xf.fffffp+124f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0xf.fffffp+124 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0xf.fffffp+124 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0xf.fffffp+124 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0xf.fffffp+124 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok
+pow 0.0 min_subnorm
+= pow downward flt-32 0x0p+0f 0x8p-152f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 0x0p+0f 0x8p-152f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 0x0p+0f 0x8p-152f : 0x0p+0f : inexact-ok
+= pow upward flt-32 0x0p+0f 0x8p-152f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 0x0p+0 0x8p-152 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x8p-152 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x8p-152 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x8p-152 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 0x0p+0 0x4p-1076 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 0x0p+0 0x4p-1076 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 0x0p+0 0x4p-1076 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 0x0p+0 0x4p-1076 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x0p+0L 0x4p-16448L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x0p+0L 0x4p-16448L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x0p+0L 0x4p-16448L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x0p+0L 0x4p-16448L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x4p-16448L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x4p-16448L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x4p-16448L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x4p-16448L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 0x0p+0L 0x4p-16496L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 0x0p+0L 0x4p-16496L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 0x0p+0L 0x4p-16496L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 0x0p+0L 0x4p-16496L : 0x0p+0L : inexact-ok
+pow -0 4
+= pow downward flt-32 -0x0p+0f 0x4p+0f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x4p+0f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x4p+0f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x4p+0f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x4p+0 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x4p+0 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x4p+0 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x4p+0 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x4p+0L : 0x0p+0L : inexact-ok
+pow -0 0x1p24
+= pow downward flt-32 -0x0p+0f 0x1p+24f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x1p+24f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x1p+24f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x1p+24f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x1p+24 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x1p+24 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x1p+24 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x1p+24 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x1p+24L : 0x0p+0L : inexact-ok
+pow -0 0x1p127
+= pow downward flt-32 -0x0p+0f 0x8p+124f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x8p+124f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x8p+124f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x8p+124f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x8p+124 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x8p+124 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x8p+124 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x8p+124 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x8p+124L : 0x0p+0L : inexact-ok
+pow -0 max
+= pow downward flt-32 -0x0p+0f 0xf.fffffp+124f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0xf.fffffp+124f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0xf.fffffp+124f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0xf.fffffp+124f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0xf.fffffp+124 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0xf.fffffp+124 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0xf.fffffp+124 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0xf.fffffp+124 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0xf.fffffp+124L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 -0x0p+0 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok
+pow -0 min_subnorm
+= pow downward flt-32 -0x0p+0f 0x8p-152f : 0x0p+0f : inexact-ok
+= pow tonearest flt-32 -0x0p+0f 0x8p-152f : 0x0p+0f : inexact-ok
+= pow towardzero flt-32 -0x0p+0f 0x8p-152f : 0x0p+0f : inexact-ok
+= pow upward flt-32 -0x0p+0f 0x8p-152f : 0x0p+0f : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x8p-152 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x8p-152 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x8p-152 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x8p-152 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x8p-152L : 0x0p+0L : inexact-ok
+= pow downward dbl-64 -0x0p+0 0x4p-1076 : 0x0p+0 : inexact-ok
+= pow tonearest dbl-64 -0x0p+0 0x4p-1076 : 0x0p+0 : inexact-ok
+= pow towardzero dbl-64 -0x0p+0 0x4p-1076 : 0x0p+0 : inexact-ok
+= pow upward dbl-64 -0x0p+0 0x4p-1076 : 0x0p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x0p+0L 0x4p-1076L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x8p-16448L : 0x0p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x0p+0L 0x4p-16448L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x0p+0L 0x4p-16448L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x0p+0L 0x4p-16448L : 0x0p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x0p+0L 0x4p-16448L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x4p-16448L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x4p-16448L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x4p-16448L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x4p-16448L : 0x0p+0L : inexact-ok
+= pow downward ldbl-128 -0x0p+0L 0x4p-16496L : 0x0p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x0p+0L 0x4p-16496L : 0x0p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x0p+0L 0x4p-16496L : 0x0p+0L : inexact-ok
+= pow upward ldbl-128 -0x0p+0L 0x4p-16496L : 0x0p+0L : inexact-ok
+pow 16 0.25
+= pow downward flt-32 0x1p+4f 0x4p-4f : 0x2p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+4f 0x4p-4f : 0x2p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+4f 0x4p-4f : 0x2p+0f : inexact-ok
+= pow upward flt-32 0x1p+4f 0x4p-4f : 0x2p+0f : inexact-ok
+= pow downward dbl-64 0x1p+4 0x4p-4 : 0x2p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+4 0x4p-4 : 0x2p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+4 0x4p-4 : 0x2p+0 : inexact-ok
+= pow upward dbl-64 0x1p+4 0x4p-4 : 0x2p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+4L 0x4p-4L : 0x2p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+4L 0x4p-4L : 0x2p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+4L 0x4p-4L : 0x2p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+4L 0x4p-4L : 0x2p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+4L 0x4p-4L : 0x2p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+4L 0x4p-4L : 0x2p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+4L 0x4p-4L : 0x2p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+4L 0x4p-4L : 0x2p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+4L 0x4p-4L : 0x2p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+4L 0x4p-4L : 0x2p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+4L 0x4p-4L : 0x2p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+4L 0x4p-4L : 0x2p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+4L 0x4p-4L : 0x2p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+4L 0x4p-4L : 0x2p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+4L 0x4p-4L : 0x2p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+4L 0x4p-4L : 0x2p+0L : inexact-ok
+pow 0x1p64 0.125
+= pow downward flt-32 0x1p+64f 0x2p-4f : 0x1p+8f : inexact-ok
+= pow tonearest flt-32 0x1p+64f 0x2p-4f : 0x1p+8f : inexact-ok
+= pow towardzero flt-32 0x1p+64f 0x2p-4f : 0x1p+8f : inexact-ok
+= pow upward flt-32 0x1p+64f 0x2p-4f : 0x1p+8f : inexact-ok
+= pow downward dbl-64 0x1p+64 0x2p-4 : 0x1p+8 : inexact-ok
+= pow tonearest dbl-64 0x1p+64 0x2p-4 : 0x1p+8 : inexact-ok
+= pow towardzero dbl-64 0x1p+64 0x2p-4 : 0x1p+8 : inexact-ok
+= pow upward dbl-64 0x1p+64 0x2p-4 : 0x1p+8 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+64L 0x2p-4L : 0x1p+8L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+64L 0x2p-4L : 0x1p+8L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+64L 0x2p-4L : 0x1p+8L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+64L 0x2p-4L : 0x1p+8L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+64L 0x2p-4L : 0x1p+8L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+64L 0x2p-4L : 0x1p+8L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+64L 0x2p-4L : 0x1p+8L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+64L 0x2p-4L : 0x1p+8L : inexact-ok
+= pow downward ldbl-128 0x1p+64L 0x2p-4L : 0x1p+8L : inexact-ok
+= pow tonearest ldbl-128 0x1p+64L 0x2p-4L : 0x1p+8L : inexact-ok
+= pow towardzero ldbl-128 0x1p+64L 0x2p-4L : 0x1p+8L : inexact-ok
+= pow upward ldbl-128 0x1p+64L 0x2p-4L : 0x1p+8L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+64L 0x2p-4L : 0x1p+8L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+64L 0x2p-4L : 0x1p+8L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+64L 0x2p-4L : 0x1p+8L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+64L 0x2p-4L : 0x1p+8L : inexact-ok
+pow 2 4
+= pow downward flt-32 0x2p+0f 0x4p+0f : 0x1p+4f : inexact-ok
+= pow tonearest flt-32 0x2p+0f 0x4p+0f : 0x1p+4f : inexact-ok
+= pow towardzero flt-32 0x2p+0f 0x4p+0f : 0x1p+4f : inexact-ok
+= pow upward flt-32 0x2p+0f 0x4p+0f : 0x1p+4f : inexact-ok
+= pow downward dbl-64 0x2p+0 0x4p+0 : 0x1p+4 : inexact-ok
+= pow tonearest dbl-64 0x2p+0 0x4p+0 : 0x1p+4 : inexact-ok
+= pow towardzero dbl-64 0x2p+0 0x4p+0 : 0x1p+4 : inexact-ok
+= pow upward dbl-64 0x2p+0 0x4p+0 : 0x1p+4 : inexact-ok
+= pow downward ldbl-96-intel 0x2p+0L 0x4p+0L : 0x1p+4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x2p+0L 0x4p+0L : 0x1p+4L : inexact-ok
+= pow towardzero ldbl-96-intel 0x2p+0L 0x4p+0L : 0x1p+4L : inexact-ok
+= pow upward ldbl-96-intel 0x2p+0L 0x4p+0L : 0x1p+4L : inexact-ok
+= pow downward ldbl-96-m68k 0x2p+0L 0x4p+0L : 0x1p+4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x2p+0L 0x4p+0L : 0x1p+4L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x2p+0L 0x4p+0L : 0x1p+4L : inexact-ok
+= pow upward ldbl-96-m68k 0x2p+0L 0x4p+0L : 0x1p+4L : inexact-ok
+= pow downward ldbl-128 0x2p+0L 0x4p+0L : 0x1p+4L : inexact-ok
+= pow tonearest ldbl-128 0x2p+0L 0x4p+0L : 0x1p+4L : inexact-ok
+= pow towardzero ldbl-128 0x2p+0L 0x4p+0L : 0x1p+4L : inexact-ok
+= pow upward ldbl-128 0x2p+0L 0x4p+0L : 0x1p+4L : inexact-ok
+= pow downward ldbl-128ibm 0x2p+0L 0x4p+0L : 0x1p+4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x2p+0L 0x4p+0L : 0x1p+4L : inexact-ok
+= pow towardzero ldbl-128ibm 0x2p+0L 0x4p+0L : 0x1p+4L : inexact-ok
+= pow upward ldbl-128ibm 0x2p+0L 0x4p+0L : 0x1p+4L : inexact-ok
+pow 256 8
+= pow downward flt-32 0x1p+8f 0x8p+0f : 0x1p+64f : inexact-ok
+= pow tonearest flt-32 0x1p+8f 0x8p+0f : 0x1p+64f : inexact-ok
+= pow towardzero flt-32 0x1p+8f 0x8p+0f : 0x1p+64f : inexact-ok
+= pow upward flt-32 0x1p+8f 0x8p+0f : 0x1p+64f : inexact-ok
+= pow downward dbl-64 0x1p+8 0x8p+0 : 0x1p+64 : inexact-ok
+= pow tonearest dbl-64 0x1p+8 0x8p+0 : 0x1p+64 : inexact-ok
+= pow towardzero dbl-64 0x1p+8 0x8p+0 : 0x1p+64 : inexact-ok
+= pow upward dbl-64 0x1p+8 0x8p+0 : 0x1p+64 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+8L 0x8p+0L : 0x1p+64L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+8L 0x8p+0L : 0x1p+64L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+8L 0x8p+0L : 0x1p+64L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+8L 0x8p+0L : 0x1p+64L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+8L 0x8p+0L : 0x1p+64L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+8L 0x8p+0L : 0x1p+64L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+8L 0x8p+0L : 0x1p+64L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+8L 0x8p+0L : 0x1p+64L : inexact-ok
+= pow downward ldbl-128 0x1p+8L 0x8p+0L : 0x1p+64L : inexact-ok
+= pow tonearest ldbl-128 0x1p+8L 0x8p+0L : 0x1p+64L : inexact-ok
+= pow towardzero ldbl-128 0x1p+8L 0x8p+0L : 0x1p+64L : inexact-ok
+= pow upward ldbl-128 0x1p+8L 0x8p+0L : 0x1p+64L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+8L 0x8p+0L : 0x1p+64L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+8L 0x8p+0L : 0x1p+64L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+8L 0x8p+0L : 0x1p+64L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+8L 0x8p+0L : 0x1p+64L : inexact-ok
+pow 0.75 1.25
+= pow downward flt-32 0xcp-4f 0x1.4p+0f : 0xb.2ad17p-4f : inexact-ok
+= pow tonearest flt-32 0xcp-4f 0x1.4p+0f : 0xb.2ad17p-4f : inexact-ok
+= pow towardzero flt-32 0xcp-4f 0x1.4p+0f : 0xb.2ad17p-4f : inexact-ok
+= pow upward flt-32 0xcp-4f 0x1.4p+0f : 0xb.2ad18p-4f : inexact-ok
+= pow downward dbl-64 0xcp-4 0x1.4p+0 : 0xb.2ad170c81b418p-4 : inexact-ok
+= pow tonearest dbl-64 0xcp-4 0x1.4p+0 : 0xb.2ad170c81b418p-4 : inexact-ok
+= pow towardzero dbl-64 0xcp-4 0x1.4p+0 : 0xb.2ad170c81b418p-4 : inexact-ok
+= pow upward dbl-64 0xcp-4 0x1.4p+0 : 0xb.2ad170c81b42p-4 : inexact-ok
+= pow downward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0xb.2ad170c81b4183dp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0xb.2ad170c81b4183dp-4L : inexact-ok
+= pow towardzero ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0xb.2ad170c81b4183dp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0xb.2ad170c81b4183ep-4L : inexact-ok
+= pow downward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0xb.2ad170c81b4183dp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0xb.2ad170c81b4183dp-4L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0xb.2ad170c81b4183dp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0xb.2ad170c81b4183ep-4L : inexact-ok
+= pow downward ldbl-128 0xcp-4L 0x1.4p+0L : 0xb.2ad170c81b4183d3186cfafacccp-4L : inexact-ok
+= pow tonearest ldbl-128 0xcp-4L 0x1.4p+0L : 0xb.2ad170c81b4183d3186cfafaccc8p-4L : inexact-ok
+= pow towardzero ldbl-128 0xcp-4L 0x1.4p+0L : 0xb.2ad170c81b4183d3186cfafacccp-4L : inexact-ok
+= pow upward ldbl-128 0xcp-4L 0x1.4p+0L : 0xb.2ad170c81b4183d3186cfafaccc8p-4L : inexact-ok
+= pow downward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0xb.2ad170c81b4183d3186cfafaccp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0xb.2ad170c81b4183d3186cfafaccp-4L : inexact-ok
+= pow towardzero ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0xb.2ad170c81b4183d3186cfafaccp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0xb.2ad170c81b4183d3186cfafadp-4L : inexact-ok
+pow -7.49321e+133 -9.80818e+16
+= pow downward flt-32 -0xf.fffffp+124f -0x1.5c74ep+56f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x1.5c74ep+56f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x1.5c74ep+56f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x1.5c74ep+56f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x1.5c74ep+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x1.5c74ep+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x1.5c74ep+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x1.5c74ep+56 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x1.5c74ep+56L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x1.5c74ep+56L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x1.5c74ep+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x1.5c74ep+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0xf.fffffp+124f -0x1.5c74e2p+56f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x1.5c74e2p+56f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x1.5c74e2p+56f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x1.5c74e2p+56f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x1.5c74e2p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x1.5c74e2p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x1.5c74e2p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x1.5c74e2p+56 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x1.5c74e2p+56L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x1.5c74e2p+56L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x1.5c74e2p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x1.5c74e2p+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x1.5c74e09fee5p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x1.5c74e09fee5p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x1.5c74e09fee5p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x1.5c74e09fee5p+56 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x1.5c74e09fee5p+56L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x1.5c74e09fee5p+56L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x1.5c74e09fee5p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x1.5c74e09fee5p+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x1.a64503155bc0fp+444 -0x1.5c74ep+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x1.a64503155bc0fp+444 -0x1.5c74ep+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x1.a64503155bc0fp+444 -0x1.5c74ep+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x1.a64503155bc0fp+444 -0x1.5c74ep+56 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x1.a64503155bc0fp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x1.a64503155bc0fp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x1.a64503155bc0fp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x1.a64503155bc0fp+444L -0x1.5c74ep+56L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x1.a64503155bc0fp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x1.a64503155bc0fp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x1.a64503155bc0fp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x1.a64503155bc0fp+444L -0x1.5c74ep+56L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0fp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0fp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0fp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0fp+444L -0x1.5c74ep+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc0fp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc0fp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc0fp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc0fp+444L -0x1.5c74ep+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x1.a64503155bc0fp+444 -0x1.5c74e2p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x1.a64503155bc0fp+444 -0x1.5c74e2p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x1.a64503155bc0fp+444 -0x1.5c74e2p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x1.a64503155bc0fp+444 -0x1.5c74e2p+56 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x1.a64503155bc0fp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x1.a64503155bc0fp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x1.a64503155bc0fp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x1.a64503155bc0fp+444L -0x1.5c74e2p+56L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x1.a64503155bc0fp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x1.a64503155bc0fp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x1.a64503155bc0fp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x1.a64503155bc0fp+444L -0x1.5c74e2p+56L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0fp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0fp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0fp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0fp+444L -0x1.5c74e2p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc0fp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc0fp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc0fp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc0fp+444L -0x1.5c74e2p+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x1.a64503155bc0fp+444 -0x1.5c74e09fee5p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x1.a64503155bc0fp+444 -0x1.5c74e09fee5p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x1.a64503155bc0fp+444 -0x1.5c74e09fee5p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x1.a64503155bc0fp+444 -0x1.5c74e09fee5p+56 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x1.a64503155bc0fp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x1.a64503155bc0fp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x1.a64503155bc0fp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x1.a64503155bc0fp+444L -0x1.5c74e09fee5p+56L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x1.a64503155bc0fp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x1.a64503155bc0fp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x1.a64503155bc0fp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x1.a64503155bc0fp+444L -0x1.5c74e09fee5p+56L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0fp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0fp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0fp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0fp+444L -0x1.5c74e09fee5p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc0fp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc0fp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc0fp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc0fp+444L -0x1.5c74e09fee5p+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x1.a64503155bc1p+444 -0x1.5c74ep+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x1.a64503155bc1p+444 -0x1.5c74ep+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x1.a64503155bc1p+444 -0x1.5c74ep+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x1.a64503155bc1p+444 -0x1.5c74ep+56 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x1.a64503155bc1p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x1.a64503155bc1p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x1.a64503155bc1p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x1.a64503155bc1p+444L -0x1.5c74ep+56L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x1.a64503155bc1p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x1.a64503155bc1p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x1.a64503155bc1p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x1.a64503155bc1p+444L -0x1.5c74ep+56L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc1p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc1p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc1p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc1p+444L -0x1.5c74ep+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc1p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc1p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc1p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc1p+444L -0x1.5c74ep+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x1.a64503155bc1p+444 -0x1.5c74e2p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x1.a64503155bc1p+444 -0x1.5c74e2p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x1.a64503155bc1p+444 -0x1.5c74e2p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x1.a64503155bc1p+444 -0x1.5c74e2p+56 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x1.a64503155bc1p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x1.a64503155bc1p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x1.a64503155bc1p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x1.a64503155bc1p+444L -0x1.5c74e2p+56L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x1.a64503155bc1p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x1.a64503155bc1p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x1.a64503155bc1p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x1.a64503155bc1p+444L -0x1.5c74e2p+56L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc1p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc1p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc1p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc1p+444L -0x1.5c74e2p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc1p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc1p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc1p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc1p+444L -0x1.5c74e2p+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x1.a64503155bc1p+444 -0x1.5c74e09fee5p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x1.a64503155bc1p+444 -0x1.5c74e09fee5p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x1.a64503155bc1p+444 -0x1.5c74e09fee5p+56 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x1.a64503155bc1p+444 -0x1.5c74e09fee5p+56 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x1.a64503155bc1p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x1.a64503155bc1p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x1.a64503155bc1p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x1.a64503155bc1p+444L -0x1.5c74e09fee5p+56L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x1.a64503155bc1p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x1.a64503155bc1p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x1.a64503155bc1p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x1.a64503155bc1p+444L -0x1.5c74e09fee5p+56L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc1p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc1p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc1p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc1p+444L -0x1.5c74e09fee5p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc1p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc1p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc1p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc1p+444L -0x1.5c74e09fee5p+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x1.a64503155bc0f67ap+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x1.a64503155bc0f67ap+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x1.a64503155bc0f67ap+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x1.a64503155bc0f67ap+444L -0x1.5c74ep+56L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x1.a64503155bc0f67ap+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x1.a64503155bc0f67ap+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x1.a64503155bc0f67ap+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x1.a64503155bc0f67ap+444L -0x1.5c74ep+56L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67ap+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67ap+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67ap+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67ap+444L -0x1.5c74ep+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc0f67ap+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc0f67ap+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc0f67ap+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc0f67ap+444L -0x1.5c74ep+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x1.a64503155bc0f67ap+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x1.a64503155bc0f67ap+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x1.a64503155bc0f67ap+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x1.a64503155bc0f67ap+444L -0x1.5c74e2p+56L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x1.a64503155bc0f67ap+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x1.a64503155bc0f67ap+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x1.a64503155bc0f67ap+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x1.a64503155bc0f67ap+444L -0x1.5c74e2p+56L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67ap+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67ap+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67ap+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67ap+444L -0x1.5c74e2p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc0f67ap+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc0f67ap+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc0f67ap+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc0f67ap+444L -0x1.5c74e2p+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x1.a64503155bc0f67ap+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x1.a64503155bc0f67ap+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x1.a64503155bc0f67ap+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x1.a64503155bc0f67ap+444L -0x1.5c74e09fee5p+56L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x1.a64503155bc0f67ap+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x1.a64503155bc0f67ap+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x1.a64503155bc0f67ap+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x1.a64503155bc0f67ap+444L -0x1.5c74e09fee5p+56L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67ap+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67ap+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67ap+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67ap+444L -0x1.5c74e09fee5p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc0f67ap+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc0f67ap+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc0f67ap+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc0f67ap+444L -0x1.5c74e09fee5p+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x1.a64503155bc0f67cp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x1.a64503155bc0f67cp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x1.a64503155bc0f67cp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x1.a64503155bc0f67cp+444L -0x1.5c74ep+56L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x1.a64503155bc0f67cp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x1.a64503155bc0f67cp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x1.a64503155bc0f67cp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x1.a64503155bc0f67cp+444L -0x1.5c74ep+56L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67cp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67cp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67cp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67cp+444L -0x1.5c74ep+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc0f67cp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc0f67cp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc0f67cp+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc0f67cp+444L -0x1.5c74ep+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x1.a64503155bc0f67cp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x1.a64503155bc0f67cp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x1.a64503155bc0f67cp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x1.a64503155bc0f67cp+444L -0x1.5c74e2p+56L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x1.a64503155bc0f67cp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x1.a64503155bc0f67cp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x1.a64503155bc0f67cp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x1.a64503155bc0f67cp+444L -0x1.5c74e2p+56L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67cp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67cp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67cp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67cp+444L -0x1.5c74e2p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc0f67cp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc0f67cp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc0f67cp+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc0f67cp+444L -0x1.5c74e2p+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x1.a64503155bc0f67cp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x1.a64503155bc0f67cp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x1.a64503155bc0f67cp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x1.a64503155bc0f67cp+444L -0x1.5c74e09fee5p+56L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x1.a64503155bc0f67cp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x1.a64503155bc0f67cp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x1.a64503155bc0f67cp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x1.a64503155bc0f67cp+444L -0x1.5c74e09fee5p+56L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67cp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67cp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67cp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67cp+444L -0x1.5c74e09fee5p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc0f67cp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc0f67cp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc0f67cp+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc0f67cp+444L -0x1.5c74e09fee5p+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c507p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67a206bd9b6c507p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67a206bd9b6c507p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c507p+444L -0x1.5c74ep+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c507p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67a206bd9b6c507p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67a206bd9b6c507p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c507p+444L -0x1.5c74e2p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c507p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67a206bd9b6c507p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67a206bd9b6c507p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c507p+444L -0x1.5c74e09fee5p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c508p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67a206bd9b6c508p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67a206bd9b6c508p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c508p+444L -0x1.5c74ep+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c508p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67a206bd9b6c508p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67a206bd9b6c508p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c508p+444L -0x1.5c74e2p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c508p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67a206bd9b6c508p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67a206bd9b6c508p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c508p+444L -0x1.5c74e09fee5p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74ep+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74ep+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74e2p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74e2p+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74e09fee5p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c5p+444L -0x1.5c74e09fee5p+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74ep+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74ep+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74ep+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74e2p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74e2p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74e2p+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74e09fee5p+56L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74e09fee5p+56L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x1.a64503155bc0f67a206bd9b6c58p+444L -0x1.5c74e09fee5p+56L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -1.0 -0xffffff
+= pow downward flt-32 -0x1p+0f -0xf.fffffp+20f : -0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0xf.fffffp+20f : -0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0xf.fffffp+20f : -0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0xf.fffffp+20f : -0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0xf.fffffp+20 : -0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0xf.fffffp+20 : -0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0xf.fffffp+20 : -0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0xf.fffffp+20 : -0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0xf.fffffp+20L : -0x1p+0L : inexact-ok
+pow -1.0 -0x1fffffe
+= pow downward flt-32 -0x1p+0f -0x1.fffffep+24f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0x1.fffffep+24f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0x1.fffffep+24f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0x1.fffffep+24f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x1.fffffep+24 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x1.fffffep+24 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x1.fffffep+24 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x1.fffffep+24 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x1.fffffep+24L : 0x1p+0L : inexact-ok
+pow -1.0 -0x1.fffffffffffffp+52
+= pow downward flt-32 -0x1p+0f -0x1.fffffep+52f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0x1.fffffep+52f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0x1.fffffep+52f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0x1.fffffep+52f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x1.fffffep+52 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x1.fffffep+52 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x1.fffffep+52 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x1.fffffep+52 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow downward flt-32 -0x1p+0f -0x2p+52f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0x2p+52f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0x2p+52f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0x2p+52f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x2p+52 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x2p+52 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x2p+52 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x2p+52 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x2p+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x2p+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x2p+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x2p+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x2p+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x2p+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x2p+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x2p+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x2p+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x2p+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x2p+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x2p+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x2p+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x2p+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x2p+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x2p+52L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x1.fffffffffffffp+52 : -0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x1.fffffffffffffp+52 : -0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x1.fffffffffffffp+52 : -0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x1.fffffffffffffp+52 : -0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+pow -1.0 -0x1.fffffffffffffp+53
+= pow downward flt-32 -0x1p+0f -0x3.fffffcp+52f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0x3.fffffcp+52f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0x3.fffffcp+52f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0x3.fffffcp+52f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x3.fffffcp+52 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x3.fffffcp+52 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x3.fffffcp+52 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x3.fffffcp+52 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow downward flt-32 -0x1p+0f -0x4p+52f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0x4p+52f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0x4p+52f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0x4p+52f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x4p+52 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x4p+52 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x4p+52 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x4p+52 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x4p+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x4p+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x4p+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x4p+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x4p+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x4p+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x4p+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x4p+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x4p+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x4p+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x4p+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x4p+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x4p+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x4p+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x4p+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x4p+52L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x3.ffffffffffffep+52 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x3.ffffffffffffep+52 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x3.ffffffffffffep+52 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x3.ffffffffffffep+52 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+pow -1.0 -0x1.fffffffffffffffep+63
+= pow downward flt-32 -0x1p+0f -0xf.fffffp+60f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0xf.fffffp+60f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0xf.fffffp+60f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0xf.fffffp+60f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0xf.fffffp+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0xf.fffffp+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0xf.fffffp+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0xf.fffffp+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow downward flt-32 -0x1p+0f -0x1p+64f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0x1p+64f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0x1p+64f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0x1p+64f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x1p+64 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x1p+64 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x1p+64 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x1p+64 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x1p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x1p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x1p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x1p+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x1p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x1p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x1p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x1p+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x1p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x1p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x1p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x1p+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x1p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x1p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x1p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x1p+64L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0xf.ffffffffffff8p+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0xf.ffffffffffff8p+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0xf.ffffffffffff8p+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0xf.ffffffffffff8p+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+pow -1.0 -0x1.fffffffffffffffep+64
+= pow downward flt-32 -0x1p+0f -0x1.fffffep+64f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0x1.fffffep+64f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0x1.fffffep+64f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0x1.fffffep+64f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x1.fffffep+64 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x1.fffffep+64 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x1.fffffep+64 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x1.fffffep+64 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow downward flt-32 -0x1p+0f -0x2p+64f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0x2p+64f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0x2p+64f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0x2p+64f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x2p+64 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x2p+64 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x2p+64 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x2p+64 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x2p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x2p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x2p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x2p+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x2p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x2p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x2p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x2p+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x2p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x2p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x2p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x2p+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x2p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x2p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x2p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x2p+64L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x1.fffffffffffffp+64 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x1.fffffffffffffp+64 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x1.fffffffffffffp+64 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x1.fffffffffffffp+64 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+pow -1.0 -0x1.ffffffffffffffffffffffffff8p+105
+= pow downward flt-32 -0x1p+0f -0x3.fffffcp+104f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0x3.fffffcp+104f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0x3.fffffcp+104f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0x3.fffffcp+104f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x3.fffffcp+104 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x3.fffffcp+104 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x3.fffffcp+104 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x3.fffffcp+104 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward flt-32 -0x1p+0f -0x4p+104f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0x4p+104f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0x4p+104f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0x4p+104f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x4p+104 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x4p+104 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x4p+104 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x4p+104 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x4p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x4p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x4p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x4p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x4p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x4p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x4p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x4p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x4p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x4p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x4p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x4p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x4p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x4p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x4p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x4p+104L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x3.ffffffffffffep+104 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x3.ffffffffffffep+104 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x3.ffffffffffffep+104 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x3.ffffffffffffep+104 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x3.ffffffffffffffffffffffffffp+104L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x3.ffffffffffffffffffffffffffp+104L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x3.ffffffffffffffffffffffffffp+104L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x3.ffffffffffffffffffffffffffp+104L : -0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x3.ffffffffffffffffffffffffffp+104L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x3.ffffffffffffffffffffffffffp+104L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x3.ffffffffffffffffffffffffffp+104L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x3.ffffffffffffffffffffffffffp+104L : -0x1p+0L : inexact-ok
+pow -1.0 -0x1.ffffffffffffffffffffffffff8p+106
+= pow downward flt-32 -0x1p+0f -0x7.fffff8p+104f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0x7.fffff8p+104f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0x7.fffff8p+104f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0x7.fffff8p+104f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x7.fffff8p+104 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x7.fffff8p+104 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x7.fffff8p+104 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x7.fffff8p+104 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow downward flt-32 -0x1p+0f -0x8p+104f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0x8p+104f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0x8p+104f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0x8p+104f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x8p+104 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x8p+104 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x8p+104 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x8p+104 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x8p+104L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x7.ffffffffffffcp+104 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x7.ffffffffffffcp+104 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x7.ffffffffffffcp+104 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x7.ffffffffffffcp+104 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x7.fffffffffffffffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x7.fffffffffffffffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x7.fffffffffffffffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x7.fffffffffffffffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x7.fffffffffffffffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x7.fffffffffffffffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x7.fffffffffffffffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x7.fffffffffffffffffffffffffep+104L : 0x1p+0L : inexact-ok
+pow -1.0 -0x1.ffffffffffffffffffffffffffffp+112
+= pow downward flt-32 -0x1p+0f -0x1.fffffep+112f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0x1.fffffep+112f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0x1.fffffep+112f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0x1.fffffep+112f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x1.fffffep+112 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x1.fffffep+112 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x1.fffffep+112 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x1.fffffep+112 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow downward flt-32 -0x1p+0f -0x2p+112f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0x2p+112f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0x2p+112f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0x2p+112f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x2p+112 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x2p+112 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x2p+112 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x2p+112 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x2p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x2p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x2p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x2p+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x2p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x2p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x2p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x2p+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x2p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x2p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x2p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x2p+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x2p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x2p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x2p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x2p+112L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x1.fffffffffffffp+112 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x1.fffffffffffffp+112 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x1.fffffffffffffp+112 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x1.fffffffffffffp+112 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x1.ffffffffffffffffffffffffffffp+112L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x1.ffffffffffffffffffffffffffffp+112L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x1.ffffffffffffffffffffffffffffp+112L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x1.ffffffffffffffffffffffffffffp+112L : -0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x1.ffffffffffffffffffffffffff8p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x1.ffffffffffffffffffffffffff8p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x1.ffffffffffffffffffffffffff8p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x1.ffffffffffffffffffffffffff8p+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x1.ffffffffffffffffffffffffff8p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x1.ffffffffffffffffffffffffff8p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x1.ffffffffffffffffffffffffff8p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x1.ffffffffffffffffffffffffff8p+112L : 0x1p+0L : inexact-ok
+pow -1.0 -0x1.ffffffffffffffffffffffffffffp+113
+= pow downward flt-32 -0x1p+0f -0x3.fffffcp+112f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0x3.fffffcp+112f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0x3.fffffcp+112f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0x3.fffffcp+112f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x3.fffffcp+112 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x3.fffffcp+112 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x3.fffffcp+112 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x3.fffffcp+112 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow downward flt-32 -0x1p+0f -0x4p+112f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0x4p+112f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0x4p+112f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0x4p+112f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x4p+112 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x4p+112 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x4p+112 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x4p+112 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x4p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x4p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x4p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x4p+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x4p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x4p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x4p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x4p+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x4p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x4p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x4p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x4p+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x4p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x4p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x4p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x4p+112L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0x3.ffffffffffffep+112 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0x3.ffffffffffffep+112 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0x3.ffffffffffffep+112 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0x3.ffffffffffffep+112 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x3.fffffffffffffffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x3.fffffffffffffffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x3.fffffffffffffffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x3.fffffffffffffffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0x3.ffffffffffffffffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0x3.ffffffffffffffffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0x3.ffffffffffffffffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0x3.ffffffffffffffffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0x3.ffffffffffffffffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0x3.ffffffffffffffffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0x3.ffffffffffffffffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0x3.ffffffffffffffffffffffffffp+112L : 0x1p+0L : inexact-ok
+pow -1.0 -max
+= pow downward flt-32 -0x1p+0f -0xf.fffffp+124f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f -0xf.fffffp+124f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f -0xf.fffffp+124f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f -0xf.fffffp+124f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0xf.fffffp+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0xf.fffffp+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0xf.fffffp+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0xf.fffffp+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 -0xf.ffffffffffff8p+1020 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 -0xf.ffffffffffff8p+1020 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 -0xf.ffffffffffff8p+1020 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 -0xf.ffffffffffff8p+1020 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L -0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L -0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L -0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L -0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L -0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L -0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L -0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L -0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p+0L : inexact-ok
+pow -1.0 0xffffff
+= pow downward flt-32 -0x1p+0f 0xf.fffffp+20f : -0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0xf.fffffp+20f : -0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0xf.fffffp+20f : -0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0xf.fffffp+20f : -0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0xf.fffffp+20 : -0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0xf.fffffp+20 : -0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0xf.fffffp+20 : -0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0xf.fffffp+20 : -0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0xf.fffffp+20L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0xf.fffffp+20L : -0x1p+0L : inexact-ok
+pow -1.0 0x1fffffe
+= pow downward flt-32 -0x1p+0f 0x1.fffffep+24f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0x1.fffffep+24f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0x1.fffffep+24f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0x1.fffffep+24f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x1.fffffep+24 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x1.fffffep+24 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x1.fffffep+24 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x1.fffffep+24 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x1.fffffep+24L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x1.fffffep+24L : 0x1p+0L : inexact-ok
+pow -1.0 0x1.fffffffffffffp+52
+= pow downward flt-32 -0x1p+0f 0x2p+52f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0x2p+52f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0x2p+52f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0x2p+52f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x2p+52 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x2p+52 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x2p+52 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x2p+52 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x2p+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x2p+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x2p+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x2p+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x2p+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x2p+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x2p+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x2p+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x2p+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x2p+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x2p+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x2p+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x2p+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x2p+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x2p+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x2p+52L : 0x1p+0L : inexact-ok
+= pow downward flt-32 -0x1p+0f 0x1.fffffep+52f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0x1.fffffep+52f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0x1.fffffep+52f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0x1.fffffep+52f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x1.fffffep+52 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x1.fffffep+52 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x1.fffffep+52 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x1.fffffep+52 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x1.fffffep+52L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x1.fffffffffffffp+52 : -0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x1.fffffffffffffp+52 : -0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x1.fffffffffffffp+52 : -0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x1.fffffffffffffp+52 : -0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x1.fffffffffffffp+52L : -0x1p+0L : inexact-ok
+pow -1.0 0x1.fffffffffffffp+53
+= pow downward flt-32 -0x1p+0f 0x4p+52f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0x4p+52f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0x4p+52f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0x4p+52f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x4p+52 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x4p+52 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x4p+52 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x4p+52 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x4p+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x4p+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x4p+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x4p+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x4p+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x4p+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x4p+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x4p+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x4p+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x4p+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x4p+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x4p+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x4p+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x4p+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x4p+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x4p+52L : 0x1p+0L : inexact-ok
+= pow downward flt-32 -0x1p+0f 0x3.fffffcp+52f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0x3.fffffcp+52f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0x3.fffffcp+52f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0x3.fffffcp+52f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x3.fffffcp+52 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x3.fffffcp+52 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x3.fffffcp+52 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x3.fffffcp+52 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x3.fffffcp+52L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x3.ffffffffffffep+52 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x3.ffffffffffffep+52 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x3.ffffffffffffep+52 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x3.ffffffffffffep+52 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x3.ffffffffffffep+52L : 0x1p+0L : inexact-ok
+pow -1.0 0x1.fffffffffffffffep+63
+= pow downward flt-32 -0x1p+0f 0x1p+64f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0x1p+64f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0x1p+64f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0x1p+64f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x1p+64 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x1p+64 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x1p+64 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x1p+64 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x1p+64L : 0x1p+0L : inexact-ok
+= pow downward flt-32 -0x1p+0f 0xf.fffffp+60f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0xf.fffffp+60f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0xf.fffffp+60f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0xf.fffffp+60f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0xf.fffffp+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0xf.fffffp+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0xf.fffffp+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0xf.fffffp+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0xf.fffffp+60L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 0xf.ffffffffffff8p+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0xf.ffffffffffff8p+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0xf.ffffffffffff8p+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0xf.ffffffffffff8p+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0xf.ffffffffffff8p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0xf.fffffffffffffffp+60L : -0x1p+0L : inexact-ok
+pow -1.0 0x1.fffffffffffffffep+64
+= pow downward flt-32 -0x1p+0f 0x2p+64f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0x2p+64f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0x2p+64f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0x2p+64f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x2p+64 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x2p+64 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x2p+64 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x2p+64 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x2p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x2p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x2p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x2p+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x2p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x2p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x2p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x2p+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x2p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x2p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x2p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x2p+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x2p+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x2p+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x2p+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x2p+64L : 0x1p+0L : inexact-ok
+= pow downward flt-32 -0x1p+0f 0x1.fffffep+64f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0x1.fffffep+64f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0x1.fffffep+64f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0x1.fffffep+64f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x1.fffffep+64 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x1.fffffep+64 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x1.fffffep+64 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x1.fffffep+64 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x1.fffffep+64L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x1.fffffffffffffp+64 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x1.fffffffffffffp+64 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x1.fffffffffffffp+64 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x1.fffffffffffffp+64 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x1.fffffffffffffp+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x1.fffffffffffffffep+64L : 0x1p+0L : inexact-ok
+pow -1.0 0x1.ffffffffffffffffffffffffff8p+105
+= pow downward flt-32 -0x1p+0f 0x4p+104f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0x4p+104f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0x4p+104f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0x4p+104f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x4p+104 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x4p+104 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x4p+104 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x4p+104 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x4p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x4p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x4p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x4p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x4p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x4p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x4p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x4p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x4p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x4p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x4p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x4p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x4p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x4p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x4p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x4p+104L : 0x1p+0L : inexact-ok
+= pow downward flt-32 -0x1p+0f 0x3.fffffcp+104f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0x3.fffffcp+104f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0x3.fffffcp+104f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0x3.fffffcp+104f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x3.fffffcp+104 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x3.fffffcp+104 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x3.fffffcp+104 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x3.fffffcp+104 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x3.fffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x3.ffffffffffffep+104 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x3.ffffffffffffep+104 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x3.ffffffffffffep+104 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x3.ffffffffffffep+104 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x3.ffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x3.fffffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0x1p+0L : inexact-ok
+pow -1.0 0x1.ffffffffffffffffffffffffff8p+106
+= pow downward flt-32 -0x1p+0f 0x8p+104f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0x8p+104f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0x8p+104f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0x8p+104f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x8p+104 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x8p+104 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x8p+104 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x8p+104 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x8p+104L : 0x1p+0L : inexact-ok
+= pow downward flt-32 -0x1p+0f 0x7.fffff8p+104f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0x7.fffff8p+104f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0x7.fffff8p+104f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0x7.fffff8p+104f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x7.fffff8p+104 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x7.fffff8p+104 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x7.fffff8p+104 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x7.fffff8p+104 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x7.fffff8p+104L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x7.ffffffffffffcp+104 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x7.ffffffffffffcp+104 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x7.ffffffffffffcp+104 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x7.ffffffffffffcp+104 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x7.ffffffffffffcp+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x7.fffffffffffffff8p+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x7.fffffffffffffffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x7.fffffffffffffffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x7.fffffffffffffffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x7.fffffffffffffffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x7.fffffffffffffffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x7.fffffffffffffffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x7.fffffffffffffffffffffffffep+104L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x7.fffffffffffffffffffffffffep+104L : 0x1p+0L : inexact-ok
+pow -1.0 0x1.ffffffffffffffffffffffffffffp+112
+= pow downward flt-32 -0x1p+0f 0x2p+112f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0x2p+112f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0x2p+112f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0x2p+112f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x2p+112 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x2p+112 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x2p+112 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x2p+112 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x2p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x2p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x2p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x2p+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x2p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x2p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x2p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x2p+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x2p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x2p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x2p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x2p+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x2p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x2p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x2p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x2p+112L : 0x1p+0L : inexact-ok
+= pow downward flt-32 -0x1p+0f 0x1.fffffep+112f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0x1.fffffep+112f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0x1.fffffep+112f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0x1.fffffep+112f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x1.fffffep+112 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x1.fffffep+112 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x1.fffffep+112 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x1.fffffep+112 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x1.fffffep+112L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x1.fffffffffffffp+112 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x1.fffffffffffffp+112 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x1.fffffffffffffp+112 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x1.fffffffffffffp+112 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x1.fffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x1.fffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x1.ffffffffffffffffffffffffffffp+112L : -0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x1.ffffffffffffffffffffffffffffp+112L : -0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x1.ffffffffffffffffffffffffffffp+112L : -0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x1.ffffffffffffffffffffffffffffp+112L : -0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0x1p+0L : inexact-ok
+pow -1.0 0x1.ffffffffffffffffffffffffffffp+113
+= pow downward flt-32 -0x1p+0f 0x4p+112f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0x4p+112f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0x4p+112f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0x4p+112f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x4p+112 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x4p+112 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x4p+112 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x4p+112 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x4p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x4p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x4p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x4p+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x4p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x4p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x4p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x4p+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x4p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x4p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x4p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x4p+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x4p+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x4p+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x4p+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x4p+112L : 0x1p+0L : inexact-ok
+= pow downward flt-32 -0x1p+0f 0x3.fffffcp+112f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0x3.fffffcp+112f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0x3.fffffcp+112f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0x3.fffffcp+112f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x3.fffffcp+112 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x3.fffffcp+112 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x3.fffffcp+112 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x3.fffffcp+112 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x3.fffffcp+112L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 0x3.ffffffffffffep+112 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0x3.ffffffffffffep+112 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0x3.ffffffffffffep+112 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0x3.ffffffffffffep+112 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x3.ffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x3.fffffffffffffffcp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x3.fffffffffffffffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x3.fffffffffffffffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x3.fffffffffffffffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x3.fffffffffffffffffffffffffffep+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0x1p+0L : inexact-ok
+pow -1.0 max
+= pow downward flt-32 -0x1p+0f 0xf.fffffp+124f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 -0x1p+0f 0xf.fffffp+124f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 -0x1p+0f 0xf.fffffp+124f : 0x1p+0f : inexact-ok
+= pow upward flt-32 -0x1p+0f 0xf.fffffp+124f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 -0x1p+0 0xf.fffffp+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0xf.fffffp+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0xf.fffffp+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0xf.fffffp+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0xf.fffffp+124L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 -0x1p+0 0xf.ffffffffffff8p+1020 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 -0x1p+0 0xf.ffffffffffff8p+1020 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 -0x1p+0 0xf.ffffffffffff8p+1020 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 -0x1p+0 0xf.ffffffffffff8p+1020 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel -0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel -0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel -0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel -0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k -0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k -0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 -0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 -0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 -0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 -0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm -0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm -0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm -0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm -0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p+0L : inexact-ok
+pow -2.0 126
+= pow downward flt-32 -0x2p+0f 0x7.ep+4f : 0x4p+124f : inexact-ok
+= pow tonearest flt-32 -0x2p+0f 0x7.ep+4f : 0x4p+124f : inexact-ok
+= pow towardzero flt-32 -0x2p+0f 0x7.ep+4f : 0x4p+124f : inexact-ok
+= pow upward flt-32 -0x2p+0f 0x7.ep+4f : 0x4p+124f : inexact-ok
+= pow downward dbl-64 -0x2p+0 0x7.ep+4 : 0x4p+124 : inexact-ok
+= pow tonearest dbl-64 -0x2p+0 0x7.ep+4 : 0x4p+124 : inexact-ok
+= pow towardzero dbl-64 -0x2p+0 0x7.ep+4 : 0x4p+124 : inexact-ok
+= pow upward dbl-64 -0x2p+0 0x7.ep+4 : 0x4p+124 : inexact-ok
+= pow downward ldbl-96-intel -0x2p+0L 0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow towardzero ldbl-96-intel -0x2p+0L 0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow downward ldbl-96-m68k -0x2p+0L 0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow downward ldbl-128 -0x2p+0L 0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow towardzero ldbl-128 -0x2p+0L 0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow upward ldbl-128 -0x2p+0L 0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow downward ldbl-128ibm -0x2p+0L 0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow towardzero ldbl-128ibm -0x2p+0L 0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x7.ep+4L : 0x4p+124L : inexact-ok
+pow -2.0 127
+= pow downward flt-32 -0x2p+0f 0x7.fp+4f : -0x8p+124f : inexact-ok
+= pow tonearest flt-32 -0x2p+0f 0x7.fp+4f : -0x8p+124f : inexact-ok
+= pow towardzero flt-32 -0x2p+0f 0x7.fp+4f : -0x8p+124f : inexact-ok
+= pow upward flt-32 -0x2p+0f 0x7.fp+4f : -0x8p+124f : inexact-ok
+= pow downward dbl-64 -0x2p+0 0x7.fp+4 : -0x8p+124 : inexact-ok
+= pow tonearest dbl-64 -0x2p+0 0x7.fp+4 : -0x8p+124 : inexact-ok
+= pow towardzero dbl-64 -0x2p+0 0x7.fp+4 : -0x8p+124 : inexact-ok
+= pow upward dbl-64 -0x2p+0 0x7.fp+4 : -0x8p+124 : inexact-ok
+= pow downward ldbl-96-intel -0x2p+0L 0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow towardzero ldbl-96-intel -0x2p+0L 0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow downward ldbl-96-m68k -0x2p+0L 0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow downward ldbl-128 -0x2p+0L 0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow towardzero ldbl-128 -0x2p+0L 0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow upward ldbl-128 -0x2p+0L 0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow downward ldbl-128ibm -0x2p+0L 0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow towardzero ldbl-128ibm -0x2p+0L 0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x7.fp+4L : -0x8p+124L : inexact-ok
+pow -2.0 -126
+= pow downward flt-32 -0x2p+0f -0x7.ep+4f : 0x4p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f -0x7.ep+4f : 0x4p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow towardzero flt-32 -0x2p+0f -0x7.ep+4f : 0x4p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow upward flt-32 -0x2p+0f -0x7.ep+4f : 0x4p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x7.ep+4 : 0x4p-128 : inexact-ok
+= pow tonearest dbl-64 -0x2p+0 -0x7.ep+4 : 0x4p-128 : inexact-ok
+= pow towardzero dbl-64 -0x2p+0 -0x7.ep+4 : 0x4p-128 : inexact-ok
+= pow upward dbl-64 -0x2p+0 -0x7.ep+4 : 0x4p-128 : inexact-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow tonearest ldbl-96-intel -0x2p+0L -0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow towardzero ldbl-96-intel -0x2p+0L -0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow upward ldbl-96-intel -0x2p+0L -0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow upward ldbl-96-m68k -0x2p+0L -0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow downward ldbl-128 -0x2p+0L -0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow tonearest ldbl-128 -0x2p+0L -0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow towardzero ldbl-128 -0x2p+0L -0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow upward ldbl-128 -0x2p+0L -0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow tonearest ldbl-128ibm -0x2p+0L -0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow towardzero ldbl-128ibm -0x2p+0L -0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow upward ldbl-128ibm -0x2p+0L -0x7.ep+4L : 0x4p-128L : inexact-ok
+pow -2.0 -127
+= pow downward flt-32 -0x2p+0f -0x7.fp+4f : -0x2p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f -0x7.fp+4f : -0x2p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow towardzero flt-32 -0x2p+0f -0x7.fp+4f : -0x2p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow upward flt-32 -0x2p+0f -0x7.fp+4f : -0x2p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x7.fp+4 : -0x2p-128 : inexact-ok
+= pow tonearest dbl-64 -0x2p+0 -0x7.fp+4 : -0x2p-128 : inexact-ok
+= pow towardzero dbl-64 -0x2p+0 -0x7.fp+4 : -0x2p-128 : inexact-ok
+= pow upward dbl-64 -0x2p+0 -0x7.fp+4 : -0x2p-128 : inexact-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow tonearest ldbl-96-intel -0x2p+0L -0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow towardzero ldbl-96-intel -0x2p+0L -0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow upward ldbl-96-intel -0x2p+0L -0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow upward ldbl-96-m68k -0x2p+0L -0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow downward ldbl-128 -0x2p+0L -0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow tonearest ldbl-128 -0x2p+0L -0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow towardzero ldbl-128 -0x2p+0L -0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow upward ldbl-128 -0x2p+0L -0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow tonearest ldbl-128ibm -0x2p+0L -0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow towardzero ldbl-128ibm -0x2p+0L -0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow upward ldbl-128ibm -0x2p+0L -0x7.fp+4L : -0x2p-128L : inexact-ok
+pow -2.0 -0xffffff
+= pow downward flt-32 -0x2p+0f -0xf.fffffp+20f : -0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f -0xf.fffffp+20f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0xf.fffffp+20f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0xf.fffffp+20f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0x2p+0 -0xf.fffffp+20 : -0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 -0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L -0xf.fffffp+20L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L -0xf.fffffp+20L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x2p+0L -0xf.fffffp+20L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L -0xf.fffffp+20L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -2.0 -0x1fffffe
+= pow downward flt-32 -0x2p+0f -0x1.fffffep+24f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0x1.fffffep+24f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0x1.fffffep+24f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0x1.fffffep+24f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x1.fffffep+24 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x1.fffffep+24L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x1.fffffep+24L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x1.fffffep+24L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x1.fffffep+24L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -2.0 -0x1.fffffffffffffp+52
+= pow downward flt-32 -0x2p+0f -0x1.fffffep+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0x1.fffffep+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0x1.fffffep+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0x1.fffffep+52f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x1.fffffep+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x1.fffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x1.fffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x1.fffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x1.fffffep+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x2p+0f -0x2p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0x2p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0x2p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0x2p+52f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x2p+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x2p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x2p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x2p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x2p+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x1.fffffffffffffp+52 : -0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 -0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L -0x1.fffffffffffffp+52L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffp+52L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x2p+0L -0x1.fffffffffffffp+52L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L -0x1.fffffffffffffp+52L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -2.0 -0x1.fffffffffffffp+53
+= pow downward flt-32 -0x2p+0f -0x3.fffffcp+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0x3.fffffcp+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0x3.fffffcp+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0x3.fffffcp+52f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x3.fffffcp+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x3.fffffcp+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x3.fffffcp+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x3.fffffcp+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x3.fffffcp+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x2p+0f -0x4p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0x4p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0x4p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0x4p+52f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x4p+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x4p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x4p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x4p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x4p+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x3.ffffffffffffep+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x3.ffffffffffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x3.ffffffffffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x3.ffffffffffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x3.ffffffffffffep+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -2.0 -0x1.fffffffffffffffep+63
+= pow downward flt-32 -0x2p+0f -0xf.fffffp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0xf.fffffp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0xf.fffffp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0xf.fffffp+60f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0xf.fffffp+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0xf.fffffp+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0xf.fffffp+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0xf.fffffp+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0xf.fffffp+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x2p+0f -0x1p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0x1p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0x1p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0x1p+64f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x1p+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x1p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x1p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x1p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x1p+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0xf.ffffffffffff8p+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0xf.ffffffffffff8p+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0xf.ffffffffffff8p+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0xf.ffffffffffff8p+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0xf.ffffffffffff8p+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0xf.fffffffffffffffp+60L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L -0xf.fffffffffffffffp+60L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x2p+0L -0xf.fffffffffffffffp+60L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L -0xf.fffffffffffffffp+60L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -2.0 -0x1.fffffffffffffffep+64
+= pow downward flt-32 -0x2p+0f -0x1.fffffep+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0x1.fffffep+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0x1.fffffep+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0x1.fffffep+64f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x1.fffffep+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x1.fffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x1.fffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x1.fffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x1.fffffep+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x2p+0f -0x2p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0x2p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0x2p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0x2p+64f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x2p+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x2p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x2p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x2p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x2p+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x1.fffffffffffffp+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x1.fffffffffffffp+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffp+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x1.fffffffffffffp+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x1.fffffffffffffp+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x1.fffffffffffffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x1.fffffffffffffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x1.fffffffffffffffep+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -2.0 -0x1.ffffffffffffffffffffffffff8p+105
+= pow downward flt-32 -0x2p+0f -0x3.fffffcp+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0x3.fffffcp+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0x3.fffffcp+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0x3.fffffcp+104f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x3.fffffcp+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x3.fffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x3.fffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x3.fffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x3.fffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x2p+0f -0x4p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0x4p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0x4p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0x4p+104f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x4p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x4p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x4p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x4p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x4p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x3.ffffffffffffep+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x3.ffffffffffffep+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x3.ffffffffffffep+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x3.ffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x3.ffffffffffffep+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x3.fffffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x3.fffffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x3.fffffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x3.fffffffffffffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x3.ffffffffffffffffffffffffffp+104L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L -0x3.ffffffffffffffffffffffffffp+104L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -2.0 -0x1.ffffffffffffffffffffffffff8p+106
+= pow downward flt-32 -0x2p+0f -0x7.fffff8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0x7.fffff8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0x7.fffff8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0x7.fffff8p+104f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x7.fffff8p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x7.fffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x7.fffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x7.fffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x7.fffff8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x2p+0f -0x8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0x8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0x8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0x8p+104f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x8p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x7.ffffffffffffcp+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x7.ffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x7.ffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x7.ffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x7.ffffffffffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x7.fffffffffffffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x7.fffffffffffffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x7.fffffffffffffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x7.fffffffffffffff8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x7.fffffffffffffffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x7.fffffffffffffffffffffffffep+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -2.0 -0x1.ffffffffffffffffffffffffffffp+112
+= pow downward flt-32 -0x2p+0f -0x1.fffffep+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0x1.fffffep+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0x1.fffffep+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0x1.fffffep+112f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x1.fffffep+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x1.fffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x1.fffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x1.fffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x1.fffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x2p+0f -0x2p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0x2p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0x2p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0x2p+112f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x2p+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x2p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x2p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x2p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x2p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x1.fffffffffffffp+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x1.fffffffffffffp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x1.fffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x1.fffffffffffffp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x1.fffffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x1.fffffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x1.fffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x1.fffffffffffffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x1.ffffffffffffffffffffffffffffp+112L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x2p+0L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -2.0 -0x1.ffffffffffffffffffffffffffffp+113
+= pow downward flt-32 -0x2p+0f -0x3.fffffcp+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0x3.fffffcp+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0x3.fffffcp+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0x3.fffffcp+112f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x3.fffffcp+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x3.fffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x3.fffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x3.fffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x3.fffffcp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x2p+0f -0x4p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0x4p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0x4p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0x4p+112f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x4p+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x4p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x4p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x4p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x4p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0x3.ffffffffffffep+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x3.ffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x3.ffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x3.ffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x3.ffffffffffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0x3.fffffffffffffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0x3.fffffffffffffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x3.fffffffffffffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x3.fffffffffffffffcp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x3.fffffffffffffffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0x3.ffffffffffffffffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0x3.ffffffffffffffffffffffffffp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -2.0 -max
+= pow downward flt-32 -0x2p+0f -0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x2p+0f -0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x2p+0f -0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x2p+0f -0xf.fffffp+124f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0xf.fffffp+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0xf.fffffp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0xf.fffffp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0xf.fffffp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 -0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 -0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 -0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x2p+0 -0xf.ffffffffffff8p+1020 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0xf.ffffffffffff8p+1020L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0xf.ffffffffffff8p+1020L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0xf.ffffffffffff8p+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p+0L -0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p+0L -0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x2p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -2.0 0xffffff
+= pow downward flt-32 -0x2p+0f 0xf.fffffp+20f : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest flt-32 -0x2p+0f 0xf.fffffp+20f : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0xf.fffffp+20f : -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0xf.fffffp+20f : -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0x2p+0 0xf.fffffp+20 : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 0xf.fffffp+20 : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0xf.fffffp+20 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0xf.fffffp+20 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0xf.fffffp+20L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0xf.fffffp+20L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -2.0 0x1fffffe
+= pow downward flt-32 -0x2p+0f 0x1.fffffep+24f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0x1.fffffep+24f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0x1.fffffep+24f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0x1.fffffep+24f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x1.fffffep+24 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x1.fffffep+24 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x1.fffffep+24 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x1.fffffep+24 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x1.fffffep+24L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x1.fffffep+24L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+pow -2.0 0x1.fffffffffffffp+52
+= pow downward flt-32 -0x2p+0f 0x2p+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0x2p+52f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0x2p+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0x2p+52f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x2p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x2p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x2p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x2p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x2p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x2p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x2p+0f 0x1.fffffep+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0x1.fffffep+52f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0x1.fffffep+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0x1.fffffep+52f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x1.fffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x1.fffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x1.fffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x1.fffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x1.fffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x1.fffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x1.fffffffffffffp+52 : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest dbl-64 -0x2p+0 0x1.fffffffffffffp+52 : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x1.fffffffffffffp+52 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x1.fffffffffffffp+52 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p+0L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x1.fffffffffffffp+52L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x1.fffffffffffffp+52L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -2.0 0x1.fffffffffffffp+53
+= pow downward flt-32 -0x2p+0f 0x4p+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0x4p+52f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0x4p+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0x4p+52f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x4p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x4p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x4p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x4p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x4p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x4p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x2p+0f 0x3.fffffcp+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0x3.fffffcp+52f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0x3.fffffcp+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0x3.fffffcp+52f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x3.fffffcp+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x3.fffffcp+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x3.fffffcp+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x3.fffffcp+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x3.fffffcp+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x3.fffffcp+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x3.ffffffffffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x3.ffffffffffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x3.ffffffffffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x3.ffffffffffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x3.ffffffffffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x3.ffffffffffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+pow -2.0 0x1.fffffffffffffffep+63
+= pow downward flt-32 -0x2p+0f 0x1p+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0x1p+64f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0x1p+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0x1p+64f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x1p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x1p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x1p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x1p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x1p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x1p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x2p+0f 0xf.fffffp+60f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0xf.fffffp+60f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0xf.fffffp+60f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0xf.fffffp+60f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0xf.fffffp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0xf.fffffp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0xf.fffffp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0xf.fffffp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0xf.fffffp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0xf.fffffp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0xf.ffffffffffff8p+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0xf.ffffffffffff8p+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0xf.ffffffffffff8p+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0xf.ffffffffffff8p+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0xf.ffffffffffff8p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0xf.ffffffffffff8p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p+0L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p+0L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p+0L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0xf.fffffffffffffffp+60L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0xf.fffffffffffffffp+60L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -2.0 0x1.fffffffffffffffep+64
+= pow downward flt-32 -0x2p+0f 0x2p+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0x2p+64f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0x2p+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0x2p+64f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x2p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x2p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x2p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x2p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x2p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x2p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x2p+0f 0x1.fffffep+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0x1.fffffep+64f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0x1.fffffep+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0x1.fffffep+64f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x1.fffffep+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x1.fffffep+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x1.fffffep+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x1.fffffep+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x1.fffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x1.fffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x1.fffffffffffffp+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x1.fffffffffffffp+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x1.fffffffffffffp+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x1.fffffffffffffp+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x1.fffffffffffffp+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x1.fffffffffffffp+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x1.fffffffffffffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x1.fffffffffffffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+pow -2.0 0x1.ffffffffffffffffffffffffff8p+105
+= pow downward flt-32 -0x2p+0f 0x4p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0x4p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0x4p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0x4p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x4p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x4p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x4p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x4p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x4p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x4p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x2p+0f 0x3.fffffcp+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0x3.fffffcp+104f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0x3.fffffcp+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0x3.fffffcp+104f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x3.fffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x3.fffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x3.fffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x3.fffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x3.fffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x3.fffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x3.ffffffffffffep+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x3.ffffffffffffep+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x3.ffffffffffffep+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x3.ffffffffffffep+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x3.ffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x3.ffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x3.fffffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x3.fffffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x2p+0L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x2p+0L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -2.0 0x1.ffffffffffffffffffffffffff8p+106
+= pow downward flt-32 -0x2p+0f 0x8p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0x8p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0x8p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0x8p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x2p+0f 0x7.fffff8p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0x7.fffff8p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0x7.fffff8p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0x7.fffff8p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x7.fffff8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x7.fffff8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x7.fffff8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x7.fffff8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x7.fffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x7.fffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x7.ffffffffffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x7.ffffffffffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x7.ffffffffffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x7.ffffffffffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x7.ffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x7.ffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x7.fffffffffffffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x7.fffffffffffffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x7.fffffffffffffffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x7.fffffffffffffffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+pow -2.0 0x1.ffffffffffffffffffffffffffffp+112
+= pow downward flt-32 -0x2p+0f 0x2p+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0x2p+112f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0x2p+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0x2p+112f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x2p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x2p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x2p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x2p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x2p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x2p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x2p+0f 0x1.fffffep+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0x1.fffffep+112f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0x1.fffffep+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0x1.fffffep+112f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x1.fffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x1.fffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x1.fffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x1.fffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x1.fffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x1.fffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x1.fffffffffffffp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x1.fffffffffffffp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x1.fffffffffffffp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x1.fffffffffffffp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x1.fffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x1.fffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x1.fffffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x1.fffffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x2p+0L 0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x2p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+pow -2.0 0x1.ffffffffffffffffffffffffffffp+113
+= pow downward flt-32 -0x2p+0f 0x4p+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0x4p+112f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0x4p+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0x4p+112f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x4p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x4p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x4p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x4p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x4p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x4p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x2p+0f 0x3.fffffcp+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0x3.fffffcp+112f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0x3.fffffcp+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0x3.fffffcp+112f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x3.fffffcp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x3.fffffcp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x3.fffffcp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x3.fffffcp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x3.fffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x3.fffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0x3.ffffffffffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0x3.ffffffffffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0x3.ffffffffffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0x3.ffffffffffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x3.ffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x3.ffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x3.fffffffffffffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x3.fffffffffffffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+pow -2.0 max
+= pow downward flt-32 -0x2p+0f 0xf.fffffp+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x2p+0f 0xf.fffffp+124f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x2p+0f 0xf.fffffp+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x2p+0f 0xf.fffffp+124f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x2p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x2p+0 0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x2p+0 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x2p+0 0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p+0L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p+0L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p+0L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p+0L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p+0L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p+0L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p+0L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p+0L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x2p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x2p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x2p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x2p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+pow -max -2
+= pow downward flt-32 -0xf.fffffp+124f -0x2p+0f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x2p+0f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x2p+0f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x2p+0f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x2p+0 : 0x1.000002000003p-256 : inexact-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x2p+0 : 0x1.000002000003p-256 : inexact-ok
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x2p+0 : 0x1.000002000003p-256 : inexact-ok
+= pow upward dbl-64 -0xf.fffffp+124 -0x2p+0 : 0x1.0000020000031p-256 : inexact-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x2p+0L : 0x1.000002000003p-256L : inexact-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x2p+0L : 0x1.000002000003p-256L : inexact-ok
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x2p+0L : 0x1.000002000003p-256L : inexact-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x2p+0L : 0x1.0000020000030002p-256L : inexact-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x2p+0L : 0x1.000002000003p-256L : inexact-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x2p+0L : 0x1.000002000003p-256L : inexact-ok
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x2p+0L : 0x1.000002000003p-256L : inexact-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x2p+0L : 0x1.0000020000030002p-256L : inexact-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x2p+0L : 0x1.000002000003000004000005p-256L : inexact-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x2p+0L : 0x1.000002000003000004000005p-256L : inexact-ok
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x2p+0L : 0x1.000002000003000004000005p-256L : inexact-ok
+= pow upward ldbl-128 -0xf.fffffp+124L -0x2p+0L : 0x1.0000020000030000040000050001p-256L : inexact-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x2p+0L : 0x1.000002000003000004000005p-256L : inexact-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x2p+0L : 0x1.000002000003000004000005p-256L : inexact-ok
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x2p+0L : 0x1.000002000003000004000005p-256L : inexact-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x2p+0L : 0x1.000002000003000004000005008p-256L : inexact-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x2p+0 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x2p+0 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x2p+0 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x2p+0 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p+0L : 0x1.0000000000001p-2048L : inexact-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p+0L : 0x1.0000000000001p-2048L : inexact-ok
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p+0L : 0x1.0000000000001p-2048L : inexact-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p+0L : 0x1.0000000000001002p-2048L : inexact-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p+0L : 0x1.0000000000001p-2048L : inexact-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p+0L : 0x1.0000000000001p-2048L : inexact-ok
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p+0L : 0x1.0000000000001p-2048L : inexact-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p+0L : 0x1.0000000000001002p-2048L : inexact-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p+0L : 0x1.00000000000010000000000000cp-2048L : inexact-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p+0L : 0x1.00000000000010000000000000cp-2048L : inexact-ok
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p+0L : 0x1.00000000000010000000000000cp-2048L : inexact-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p+0L : 0x1.00000000000010000000000000c1p-2048L : inexact-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x2p+0L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p+0L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p+0L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p+0L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p+0L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+0L : 0x1.00000000000008000000000000bp-2048L : inexact-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+0L : 0x1.00000000000008000000000000bp-2048L : inexact-ok
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+0L : 0x1.00000000000008000000000000bp-2048L : inexact-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+0L : 0x1.00000000000008000000000000b1p-2048L : inexact-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+0L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -max -3
+= pow downward flt-32 -0xf.fffffp+124f -0x3p+0f : -0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f -0x3p+0f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x3p+0f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x3p+0f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 -0x3p+0 : -0x1.0000030000061p-384 : inexact-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x3p+0 : -0x1.000003000006p-384 : inexact-ok
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x3p+0 : -0x1.000003000006p-384 : inexact-ok
+= pow upward dbl-64 -0xf.fffffp+124 -0x3p+0 : -0x1.000003000006p-384 : inexact-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x3p+0L : -0x1.0000030000060002p-384L : inexact-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x3p+0L : -0x1.000003000006p-384L : inexact-ok
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x3p+0L : -0x1.000003000006p-384L : inexact-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x3p+0L : -0x1.000003000006p-384L : inexact-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x3p+0L : -0x1.0000030000060002p-384L : inexact-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x3p+0L : -0x1.000003000006p-384L : inexact-ok
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x3p+0L : -0x1.000003000006p-384L : inexact-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x3p+0L : -0x1.000003000006p-384L : inexact-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x3p+0L : -0x1.00000300000600000a00000fp-384L : inexact-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x3p+0L : -0x1.00000300000600000a00000fp-384L : inexact-ok
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x3p+0L : -0x1.00000300000600000a00000effffp-384L : inexact-ok
+= pow upward ldbl-128 -0xf.fffffp+124L -0x3p+0L : -0x1.00000300000600000a00000effffp-384L : inexact-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x3p+0L : -0x1.00000300000600000a00000fp-384L : inexact-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x3p+0L : -0x1.00000300000600000a00000fp-384L : inexact-ok
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x3p+0L : -0x1.00000300000600000a00000eff8p-384L : inexact-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x3p+0L : -0x1.00000300000600000a00000eff8p-384L : inexact-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x3p+0 : -0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x3p+0 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x3p+0 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x3p+0 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3p+0L : -0x1.0000000000001802p-3072L : inexact-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3p+0L : -0x1.00000000000018p-3072L : inexact-ok
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3p+0L : -0x1.00000000000018p-3072L : inexact-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3p+0L : -0x1.00000000000018p-3072L : inexact-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3p+0L : -0x1.0000000000001802p-3072L : inexact-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3p+0L : -0x1.00000000000018p-3072L : inexact-ok
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3p+0L : -0x1.00000000000018p-3072L : inexact-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3p+0L : -0x1.00000000000018p-3072L : inexact-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3p+0L : -0x1.000000000000180000000000018p-3072L : inexact-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x3p+0L : -0x1.000000000000180000000000018p-3072L : inexact-ok
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x3p+0L : -0x1.000000000000180000000000017fp-3072L : inexact-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3p+0L : -0x1.000000000000180000000000017fp-3072L : inexact-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3p+0L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3p+0L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3p+0L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3p+0L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3p+0L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3p+0L : -0x1.0000000000000c0000000000012p-3072L : inexact-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3p+0L : -0x1.0000000000000c0000000000012p-3072L : inexact-ok
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3p+0L : -0x1.0000000000000c0000000000011fp-3072L : inexact-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3p+0L : -0x1.0000000000000c0000000000011fp-3072L : inexact-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3p+0L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -max 2
+= pow downward flt-32 -0xf.fffffp+124f 0x2p+0f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0x2p+0f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x2p+0f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x2p+0f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x2p+0 : 0xf.ffffe000001p+252 : inexact-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x2p+0 : 0xf.ffffe000001p+252 : inexact-ok
+= pow towardzero dbl-64 -0xf.fffffp+124 0x2p+0 : 0xf.ffffe000001p+252 : inexact-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x2p+0 : 0xf.ffffe000001p+252 : inexact-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x2p+0L : 0xf.ffffe000001p+252L : inexact-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x2p+0L : 0xf.ffffe000001p+252L : inexact-ok
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x2p+0L : 0xf.ffffe000001p+252L : inexact-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x2p+0L : 0xf.ffffe000001p+252L : inexact-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x2p+0L : 0xf.ffffe000001p+252L : inexact-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x2p+0L : 0xf.ffffe000001p+252L : inexact-ok
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x2p+0L : 0xf.ffffe000001p+252L : inexact-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x2p+0L : 0xf.ffffe000001p+252L : inexact-ok
+= pow downward ldbl-128 -0xf.fffffp+124L 0x2p+0L : 0xf.ffffe000001p+252L : inexact-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x2p+0L : 0xf.ffffe000001p+252L : inexact-ok
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x2p+0L : 0xf.ffffe000001p+252L : inexact-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x2p+0L : 0xf.ffffe000001p+252L : inexact-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x2p+0L : 0xf.ffffe000001p+252L : inexact-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x2p+0L : 0xf.ffffe000001p+252L : inexact-ok
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x2p+0L : 0xf.ffffe000001p+252L : inexact-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x2p+0L : 0xf.ffffe000001p+252L : inexact-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x2p+0 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x2p+0 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x2p+0 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x2p+0 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p+0L : 0xf.ffffffffffffp+2044L : inexact-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p+0L : 0xf.ffffffffffffp+2044L : inexact-ok
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p+0L : 0xf.ffffffffffffp+2044L : inexact-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p+0L : 0xf.ffffffffffff001p+2044L : inexact-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p+0L : 0xf.ffffffffffffp+2044L : inexact-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p+0L : 0xf.ffffffffffffp+2044L : inexact-ok
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p+0L : 0xf.ffffffffffffp+2044L : inexact-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p+0L : 0xf.ffffffffffff001p+2044L : inexact-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p+0L : 0xf.ffffffffffff00000000000004p+2044L : inexact-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p+0L : 0xf.ffffffffffff00000000000004p+2044L : inexact-ok
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p+0L : 0xf.ffffffffffff00000000000004p+2044L : inexact-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p+0L : 0xf.ffffffffffff00000000000004p+2044L : inexact-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x2p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x2p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p+0L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p+0L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p+0L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p+0L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p+0L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p+0L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p+0L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p+0L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+0L : 0xf.ffffffffffff7ffffffffffff9p+2044L : inexact-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+0L : 0xf.ffffffffffff7ffffffffffff9p+2044L : inexact-ok
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+0L : 0xf.ffffffffffff7ffffffffffff9p+2044L : inexact-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+0L : 0xf.ffffffffffff7ffffffffffff908p+2044L : inexact-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+pow -max 3
+= pow downward flt-32 -0xf.fffffp+124f 0x3p+0f : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f 0x3p+0f : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x3p+0f : -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x3p+0f : -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 0x3p+0 : -0xf.ffffd000003p+380 : inexact-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x3p+0 : -0xf.ffffd000003p+380 : inexact-ok
+= pow towardzero dbl-64 -0xf.fffffp+124 0x3p+0 : -0xf.ffffd000002f8p+380 : inexact-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x3p+0 : -0xf.ffffd000002f8p+380 : inexact-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x3p+0L : -0xf.ffffd000003p+380L : inexact-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x3p+0L : -0xf.ffffd000003p+380L : inexact-ok
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x3p+0L : -0xf.ffffd000002ffffp+380L : inexact-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x3p+0L : -0xf.ffffd000002ffffp+380L : inexact-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x3p+0L : -0xf.ffffd000003p+380L : inexact-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x3p+0L : -0xf.ffffd000003p+380L : inexact-ok
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x3p+0L : -0xf.ffffd000002ffffp+380L : inexact-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x3p+0L : -0xf.ffffd000002ffffp+380L : inexact-ok
+= pow downward ldbl-128 -0xf.fffffp+124L 0x3p+0L : -0xf.ffffd000002ffffffp+380L : inexact-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x3p+0L : -0xf.ffffd000002ffffffp+380L : inexact-ok
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x3p+0L : -0xf.ffffd000002ffffffp+380L : inexact-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x3p+0L : -0xf.ffffd000002ffffffp+380L : inexact-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x3p+0L : -0xf.ffffd000002ffffffp+380L : inexact-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x3p+0L : -0xf.ffffd000002ffffffp+380L : inexact-ok
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x3p+0L : -0xf.ffffd000002ffffffp+380L : inexact-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x3p+0L : -0xf.ffffd000002ffffffp+380L : inexact-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x3p+0 : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x3p+0 : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x3p+0 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x3p+0 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3p+0L : -0xf.fffffffffffe801p+3068L : inexact-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3p+0L : -0xf.fffffffffffe8p+3068L : inexact-ok
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3p+0L : -0xf.fffffffffffe8p+3068L : inexact-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3p+0L : -0xf.fffffffffffe8p+3068L : inexact-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3p+0L : -0xf.fffffffffffe801p+3068L : inexact-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3p+0L : -0xf.fffffffffffe8p+3068L : inexact-ok
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3p+0L : -0xf.fffffffffffe8p+3068L : inexact-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3p+0L : -0xf.fffffffffffe8p+3068L : inexact-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3p+0L : -0xf.fffffffffffe8000000000000cp+3068L : inexact-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x3p+0L : -0xf.fffffffffffe8000000000000cp+3068L : inexact-ok
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x3p+0L : -0xf.fffffffffffe8000000000000bf8p+3068L : inexact-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3p+0L : -0xf.fffffffffffe8000000000000bf8p+3068L : inexact-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3p+0L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3p+0L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3p+0L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3p+0L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3p+0L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3p+0L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x3p+0L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3p+0L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3p+0L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3p+0L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3p+0L : -0xf.ffffffffffff3ffffffffffff7p+3068L : inexact-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3p+0L : -0xf.ffffffffffff3ffffffffffff7p+3068L : inexact-ok
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3p+0L : -0xf.ffffffffffff3ffffffffffff6f8p+3068L : inexact-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3p+0L : -0xf.ffffffffffff3ffffffffffff6f8p+3068L : inexact-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3p+0L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3p+0L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -max -0xffffff
+= pow downward flt-32 -0xf.fffffp+124f -0xf.fffffp+20f : -0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f -0xf.fffffp+20f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0xf.fffffp+20f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0xf.fffffp+20f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 -0xf.fffffp+20 : -0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 -0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0xf.fffffp+20L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffp+20L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L -0xf.fffffp+20L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0xf.fffffp+20L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0xf.fffffp+20 : -0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffp+20L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffp+20L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffp+20L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffp+20L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffp+20L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffp+20L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffp+20L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+20L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+20L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+20L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -max -0x1fffffe
+= pow downward flt-32 -0xf.fffffp+124f -0x1.fffffep+24f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x1.fffffep+24f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x1.fffffep+24f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x1.fffffep+24f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x1.fffffep+24 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffep+24L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffep+24L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x1.fffffep+24L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffep+24L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffep+24 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffep+24L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffep+24L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffep+24L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffep+24L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffep+24L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffep+24L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffep+24L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffep+24L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+24L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+24L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -max -0x1.fffffffffffffp+52
+= pow downward flt-32 -0xf.fffffp+124f -0x1.fffffep+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x1.fffffep+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x1.fffffep+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x1.fffffep+52f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x1.fffffep+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x1.fffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffep+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0xf.fffffp+124f -0x2p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x2p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x2p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x2p+52f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x2p+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x2p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x2p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x2p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x2p+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x1.fffffffffffffp+52 : -0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffp+52L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffp+52L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffp+52L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffp+52L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffep+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffep+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x2p+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x2p+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffffffffffp+52 : -0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+52L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+52L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+52L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+52L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+52L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+52L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+52L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffp+52L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+52L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+52L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -max -0x1.fffffffffffffp+53
+= pow downward flt-32 -0xf.fffffp+124f -0x3.fffffcp+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x3.fffffcp+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x3.fffffcp+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x3.fffffcp+52f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x3.fffffcp+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x3.fffffcp+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffcp+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x3.fffffcp+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x3.fffffcp+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0xf.fffffp+124f -0x4p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x4p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x4p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x4p+52f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x4p+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x4p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x4p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x4p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x4p+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x3.ffffffffffffep+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x3.ffffffffffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x3.ffffffffffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffep+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x3.fffffcp+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffcp+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffcp+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffcp+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffcp+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x4p+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x3.ffffffffffffep+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffcp+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffcp+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffcp+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffcp+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -max -0x1.fffffffffffffffep+63
+= pow downward flt-32 -0xf.fffffp+124f -0xf.fffffp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0xf.fffffp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0xf.fffffp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0xf.fffffp+60f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0xf.fffffp+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0xf.fffffp+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffp+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0xf.fffffp+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0xf.fffffp+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0xf.fffffp+124f -0x1p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x1p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x1p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x1p+64f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x1p+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x1p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x1p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x1p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x1p+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0xf.ffffffffffff8p+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0xf.ffffffffffff8p+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0xf.ffffffffffff8p+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffff8p+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffff8p+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0xf.fffffffffffffffp+60L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffffffffffffp+60L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffp+60L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0xf.fffffffffffffffp+60L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0xf.fffffp+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffp+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffp+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffp+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffp+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x1p+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1p+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+60L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+60L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+60L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+60L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffp+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffp+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffp+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+60L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+60L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+60L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffff8p+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffp+60L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1p+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+60L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+60L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -max -0x1.fffffffffffffffep+64
+= pow downward flt-32 -0xf.fffffp+124f -0x1.fffffep+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x1.fffffep+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x1.fffffep+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x1.fffffep+64f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x1.fffffep+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x1.fffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffep+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0xf.fffffp+124f -0x2p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x2p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x2p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x2p+64f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x2p+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x2p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x2p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x2p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x2p+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x1.fffffffffffffp+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffp+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffp+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffp+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffp+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffffep+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffep+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffep+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x2p+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x2p+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffffffffffp+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffp+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffffep+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -max -0x1.ffffffffffffffffffffffffff8p+105
+= pow downward flt-32 -0xf.fffffp+124f -0x3.fffffcp+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x3.fffffcp+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x3.fffffcp+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x3.fffffcp+104f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x3.fffffcp+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x3.fffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x3.fffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x3.fffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0xf.fffffp+124f -0x4p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x4p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x4p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x4p+104f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x4p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x4p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x4p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x4p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x4p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x3.ffffffffffffep+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x3.ffffffffffffep+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x3.ffffffffffffep+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffep+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x3.fffffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x3.fffffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x3.fffffffffffffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffffffffffffffffp+104L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffffffffffffffffp+104L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x3.fffffcp+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x4p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x3.ffffffffffffep+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffffffffffffffffp+104L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffffffffffffffffp+104L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffffffffffffffffp+104L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffffffffffffffffp+104L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffffffffffffffffp+104L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffffffffffffffffp+104L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -max -0x1.ffffffffffffffffffffffffff8p+106
+= pow downward flt-32 -0xf.fffffp+124f -0x7.fffff8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x7.fffff8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x7.fffff8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x7.fffff8p+104f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x7.fffff8p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x7.fffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x7.fffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x7.fffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x7.fffff8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0xf.fffffp+124f -0x8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x8p+104f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x8p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x7.ffffffffffffcp+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x7.ffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x7.ffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x7.ffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x7.ffffffffffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x7.fffffffffffffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x7.fffffffffffffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x7.fffffffffffffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x7.fffffffffffffff8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x7.fffffffffffffffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x7.fffffffffffffffffffffffffep+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x7.fffff8p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x7.fffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x7.fffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x7.fffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x7.fffff8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x8p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x7.ffffffffffffcp+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x7.ffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x7.ffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x7.ffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x7.ffffffffffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffff8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x7.fffffffffffffffffffffffffep+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x7.fffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x7.fffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x7.fffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x7.ffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x7.ffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x7.ffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x7.fffffffffffffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x7.fffffffffffffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x7.fffffffffffffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x7.fffffffffffffffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x7.fffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x7.ffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x7.fffffffffffffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x7.fffffffffffffffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffff8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.ffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.ffffffffffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffffffffffffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffffffffffffff8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffffffffffffffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x7.fffffffffffffffffffffffffep+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -max -0x1.ffffffffffffffffffffffffffffp+112
+= pow downward flt-32 -0xf.fffffp+124f -0x1.fffffep+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x1.fffffep+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x1.fffffep+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x1.fffffep+112f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x1.fffffep+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x1.fffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0xf.fffffp+124f -0x2p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x2p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x2p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x2p+112f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x2p+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x2p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x2p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x2p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x2p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x1.fffffffffffffp+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x1.fffffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x1.fffffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x1.fffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x1.fffffffffffffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x1.ffffffffffffffffffffffffffffp+112L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffep+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x2p+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x2p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x2p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x2p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x2p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x1.fffffffffffffp+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.fffffffffffffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.ffffffffffffffffffffffffffffp+112L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x2p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x2p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x2p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.fffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.ffffffffffffffffffffffffffffp+112L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x2p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.fffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.ffffffffffffffffffffffffffffp+112L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x2p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.fffffffffffffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.ffffffffffffffffffffffffffffp+112L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -max -0x1.ffffffffffffffffffffffffffffp+113
+= pow downward flt-32 -0xf.fffffp+124f -0x3.fffffcp+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x3.fffffcp+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x3.fffffcp+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x3.fffffcp+112f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x3.fffffcp+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x3.fffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x3.fffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x3.fffffcp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0xf.fffffp+124f -0x4p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0x4p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0x4p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0x4p+112f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x4p+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x4p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x4p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x4p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x4p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0x3.ffffffffffffep+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x3.ffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x3.ffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0x3.fffffffffffffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0x3.fffffffffffffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x3.fffffffffffffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x3.fffffffffffffffcp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x3.fffffffffffffffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0x3.ffffffffffffffffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0x3.ffffffffffffffffffffffffffp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x3.fffffcp+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffcp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x4p+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0x3.ffffffffffffep+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffcp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.fffffffffffffffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffffffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x3.ffffffffffffffffffffffffffp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.fffffffffffffffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x3.ffffffffffffffffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffffffffffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.fffffffffffffffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x3.ffffffffffffffffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffcp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffcp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.fffffffffffffffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffffffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x3.ffffffffffffffffffffffffffp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -max -max
+= pow downward flt-32 -0xf.fffffp+124f -0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f -0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f -0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0xf.fffffp+124f -0xf.fffffp+124f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0xf.fffffp+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0xf.fffffp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0xf.fffffp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -max 0xffffff
+= pow downward flt-32 -0xf.fffffp+124f 0xf.fffffp+20f : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest flt-32 -0xf.fffffp+124f 0xf.fffffp+20f : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0xf.fffffp+20f : -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0xf.fffffp+20f : -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0xf.fffffp+124 0xf.fffffp+20 : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 0xf.fffffp+20 : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0xf.fffffp+20 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0xf.fffffp+20 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0xf.fffffp+20L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0xf.fffffp+20L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0xf.fffffp+20 : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0xf.fffffp+20 : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0xf.fffffp+20 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0xf.fffffp+20 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffp+20L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffp+20L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+20L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+20L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -max 0x1fffffe
+= pow downward flt-32 -0xf.fffffp+124f 0x1.fffffep+24f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0x1.fffffep+24f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x1.fffffep+24f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x1.fffffep+24f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x1.fffffep+24 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x1.fffffep+24 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x1.fffffep+24 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x1.fffffep+24 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffep+24L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x1.fffffep+24L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffep+24 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffep+24 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffep+24 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffep+24 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffep+24L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffep+24L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+24L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+24L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+pow -max 0x1.fffffffffffffp+52
+= pow downward flt-32 -0xf.fffffp+124f 0x2p+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0x2p+52f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x2p+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x2p+52f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x2p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x2p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x2p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x2p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x2p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x2p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0xf.fffffp+124f 0x1.fffffep+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0x1.fffffep+52f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x1.fffffep+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x1.fffffep+52f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x1.fffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x1.fffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x1.fffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x1.fffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x1.fffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x1.fffffffffffffp+52 : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest dbl-64 -0xf.fffffp+124 0x1.fffffffffffffp+52 : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x1.fffffffffffffp+52 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x1.fffffffffffffp+52 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffp+52L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffp+52L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x2p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x2p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x2p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x2p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x2p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x2p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+52 : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+52 : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+52 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+52 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+52L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+52L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+52L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+52L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -max 0x1.fffffffffffffp+53
+= pow downward flt-32 -0xf.fffffp+124f 0x4p+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0x4p+52f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x4p+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x4p+52f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x4p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x4p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x4p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x4p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x4p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x4p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0xf.fffffp+124f 0x3.fffffcp+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0x3.fffffcp+52f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x3.fffffcp+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x3.fffffcp+52f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x3.fffffcp+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x3.fffffcp+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x3.fffffcp+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x3.fffffcp+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x3.fffffcp+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x3.fffffcp+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x3.ffffffffffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x3.ffffffffffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x3.ffffffffffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x3.ffffffffffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x4p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x4p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x4p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x4p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x3.fffffcp+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x3.fffffcp+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x3.fffffcp+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x3.fffffcp+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffcp+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffcp+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x3.ffffffffffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x3.ffffffffffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x3.ffffffffffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x3.ffffffffffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+pow -max 0x1.fffffffffffffffep+63
+= pow downward flt-32 -0xf.fffffp+124f 0x1p+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0x1p+64f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x1p+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x1p+64f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x1p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x1p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x1p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x1p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x1p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x1p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0xf.fffffp+124f 0xf.fffffp+60f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0xf.fffffp+60f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0xf.fffffp+60f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0xf.fffffp+60f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0xf.fffffp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0xf.fffffp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0xf.fffffp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0xf.fffffp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0xf.fffffp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0xf.fffffp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0xf.ffffffffffff8p+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0xf.ffffffffffff8p+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0xf.ffffffffffff8p+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0xf.ffffffffffff8p+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffff8p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffff8p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0xf.fffffffffffffffp+60L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0xf.fffffffffffffffp+60L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x1p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x1p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x1p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x1p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0xf.fffffp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0xf.fffffp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0xf.fffffp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0xf.fffffp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+60L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+60L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+60L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+60L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -max 0x1.fffffffffffffffep+64
+= pow downward flt-32 -0xf.fffffp+124f 0x2p+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0x2p+64f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x2p+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x2p+64f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x2p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x2p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x2p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x2p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x2p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x2p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0xf.fffffp+124f 0x1.fffffep+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0x1.fffffep+64f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x1.fffffep+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x1.fffffep+64f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x1.fffffep+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x1.fffffep+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x1.fffffep+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x1.fffffep+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x1.fffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x1.fffffffffffffp+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x1.fffffffffffffp+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x1.fffffffffffffp+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x1.fffffffffffffp+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffp+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffp+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x2p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x2p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x2p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x2p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x2p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x2p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffep+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffep+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffep+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffep+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+pow -max 0x1.ffffffffffffffffffffffffff8p+105
+= pow downward flt-32 -0xf.fffffp+124f 0x4p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0x4p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x4p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x4p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x4p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x4p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x4p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x4p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x4p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x4p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0xf.fffffp+124f 0x3.fffffcp+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0x3.fffffcp+104f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x3.fffffcp+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x3.fffffcp+104f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x3.fffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x3.fffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x3.fffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x3.fffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x3.fffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x3.fffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x3.ffffffffffffep+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x3.ffffffffffffep+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x3.ffffffffffffep+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x3.ffffffffffffep+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x3.fffffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x3.fffffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x4p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x4p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x4p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x4p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x3.fffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x3.fffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x3.fffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x3.fffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x3.ffffffffffffep+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x3.ffffffffffffep+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x3.ffffffffffffep+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x3.ffffffffffffep+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffffffffffffffffp+104L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -max 0x1.ffffffffffffffffffffffffff8p+106
+= pow downward flt-32 -0xf.fffffp+124f 0x8p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0x8p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x8p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x8p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0xf.fffffp+124f 0x7.fffff8p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0x7.fffff8p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x7.fffff8p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x7.fffff8p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x7.fffff8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x7.fffff8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x7.fffff8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x7.fffff8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x7.fffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x7.fffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x7.ffffffffffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x7.ffffffffffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x7.ffffffffffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x7.ffffffffffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x7.ffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x7.ffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x7.fffffffffffffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x7.fffffffffffffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x7.fffffffffffffffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x7.fffffffffffffffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x7.fffff8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x7.fffff8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x7.fffff8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x7.fffff8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x7.fffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x7.fffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x7.ffffffffffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x7.ffffffffffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x7.ffffffffffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x7.ffffffffffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x7.ffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x7.ffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.ffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.ffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffffffffffffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffffffffffffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffffffffffffffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffffffffffffffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+pow -max 0x1.ffffffffffffffffffffffffffffp+112
+= pow downward flt-32 -0xf.fffffp+124f 0x2p+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0x2p+112f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x2p+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x2p+112f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x2p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x2p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x2p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x2p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x2p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x2p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0xf.fffffp+124f 0x1.fffffep+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0x1.fffffep+112f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x1.fffffep+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x1.fffffep+112f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x1.fffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x1.fffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x1.fffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x1.fffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x1.fffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x1.fffffffffffffp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x1.fffffffffffffp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x1.fffffffffffffp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x1.fffffffffffffp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffp+124L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x2p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x2p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x2p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x2p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x2p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x2p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x1.fffffffffffffp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.ffffffffffffffffffffffffff8p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+pow -max 0x1.ffffffffffffffffffffffffffffp+113
+= pow downward flt-32 -0xf.fffffp+124f 0x4p+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0x4p+112f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x4p+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x4p+112f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x4p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x4p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x4p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x4p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x4p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x4p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0xf.fffffp+124f 0x3.fffffcp+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0x3.fffffcp+112f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0x3.fffffcp+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0x3.fffffcp+112f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x3.fffffcp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x3.fffffcp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x3.fffffcp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x3.fffffcp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x3.fffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x3.fffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0x3.ffffffffffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0x3.ffffffffffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0x3.ffffffffffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0x3.ffffffffffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x3.fffffffffffffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x3.fffffffffffffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x4p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x4p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x4p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x4p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x3.fffffcp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x3.fffffcp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x3.fffffcp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x3.fffffcp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0x3.ffffffffffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x3.ffffffffffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x3.ffffffffffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0x3.ffffffffffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffffffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+pow -max max
+= pow downward flt-32 -0xf.fffffp+124f 0xf.fffffp+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0xf.fffffp+124f 0xf.fffffp+124f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0xf.fffffp+124f 0xf.fffffp+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0xf.fffffp+124f 0xf.fffffp+124f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.fffffp+124 0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.fffffp+124 0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+pow -0.5 126
+= pow downward flt-32 -0x8p-4f 0x7.ep+4f : 0x4p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f 0x7.ep+4f : 0x4p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow towardzero flt-32 -0x8p-4f 0x7.ep+4f : 0x4p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow upward flt-32 -0x8p-4f 0x7.ep+4f : 0x4p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x7.ep+4 : 0x4p-128 : inexact-ok
+= pow tonearest dbl-64 -0x8p-4 0x7.ep+4 : 0x4p-128 : inexact-ok
+= pow towardzero dbl-64 -0x8p-4 0x7.ep+4 : 0x4p-128 : inexact-ok
+= pow upward dbl-64 -0x8p-4 0x7.ep+4 : 0x4p-128 : inexact-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow tonearest ldbl-96-intel -0x8p-4L 0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow towardzero ldbl-96-intel -0x8p-4L 0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow upward ldbl-96-intel -0x8p-4L 0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow upward ldbl-96-m68k -0x8p-4L 0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow downward ldbl-128 -0x8p-4L 0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow tonearest ldbl-128 -0x8p-4L 0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow towardzero ldbl-128 -0x8p-4L 0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow upward ldbl-128 -0x8p-4L 0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow tonearest ldbl-128ibm -0x8p-4L 0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow towardzero ldbl-128ibm -0x8p-4L 0x7.ep+4L : 0x4p-128L : inexact-ok
+= pow upward ldbl-128ibm -0x8p-4L 0x7.ep+4L : 0x4p-128L : inexact-ok
+pow -0.5 127
+= pow downward flt-32 -0x8p-4f 0x7.fp+4f : -0x2p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f 0x7.fp+4f : -0x2p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow towardzero flt-32 -0x8p-4f 0x7.fp+4f : -0x2p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow upward flt-32 -0x8p-4f 0x7.fp+4f : -0x2p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x7.fp+4 : -0x2p-128 : inexact-ok
+= pow tonearest dbl-64 -0x8p-4 0x7.fp+4 : -0x2p-128 : inexact-ok
+= pow towardzero dbl-64 -0x8p-4 0x7.fp+4 : -0x2p-128 : inexact-ok
+= pow upward dbl-64 -0x8p-4 0x7.fp+4 : -0x2p-128 : inexact-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow tonearest ldbl-96-intel -0x8p-4L 0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow towardzero ldbl-96-intel -0x8p-4L 0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow upward ldbl-96-intel -0x8p-4L 0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow upward ldbl-96-m68k -0x8p-4L 0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow downward ldbl-128 -0x8p-4L 0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow tonearest ldbl-128 -0x8p-4L 0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow towardzero ldbl-128 -0x8p-4L 0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow upward ldbl-128 -0x8p-4L 0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow tonearest ldbl-128ibm -0x8p-4L 0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow towardzero ldbl-128ibm -0x8p-4L 0x7.fp+4L : -0x2p-128L : inexact-ok
+= pow upward ldbl-128ibm -0x8p-4L 0x7.fp+4L : -0x2p-128L : inexact-ok
+pow -0.5 -126
+= pow downward flt-32 -0x8p-4f -0x7.ep+4f : 0x4p+124f : inexact-ok
+= pow tonearest flt-32 -0x8p-4f -0x7.ep+4f : 0x4p+124f : inexact-ok
+= pow towardzero flt-32 -0x8p-4f -0x7.ep+4f : 0x4p+124f : inexact-ok
+= pow upward flt-32 -0x8p-4f -0x7.ep+4f : 0x4p+124f : inexact-ok
+= pow downward dbl-64 -0x8p-4 -0x7.ep+4 : 0x4p+124 : inexact-ok
+= pow tonearest dbl-64 -0x8p-4 -0x7.ep+4 : 0x4p+124 : inexact-ok
+= pow towardzero dbl-64 -0x8p-4 -0x7.ep+4 : 0x4p+124 : inexact-ok
+= pow upward dbl-64 -0x8p-4 -0x7.ep+4 : 0x4p+124 : inexact-ok
+= pow downward ldbl-96-intel -0x8p-4L -0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow towardzero ldbl-96-intel -0x8p-4L -0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow downward ldbl-96-m68k -0x8p-4L -0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow downward ldbl-128 -0x8p-4L -0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow towardzero ldbl-128 -0x8p-4L -0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow upward ldbl-128 -0x8p-4L -0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow downward ldbl-128ibm -0x8p-4L -0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow towardzero ldbl-128ibm -0x8p-4L -0x7.ep+4L : 0x4p+124L : inexact-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x7.ep+4L : 0x4p+124L : inexact-ok
+pow -0.5 -127
+= pow downward flt-32 -0x8p-4f -0x7.fp+4f : -0x8p+124f : inexact-ok
+= pow tonearest flt-32 -0x8p-4f -0x7.fp+4f : -0x8p+124f : inexact-ok
+= pow towardzero flt-32 -0x8p-4f -0x7.fp+4f : -0x8p+124f : inexact-ok
+= pow upward flt-32 -0x8p-4f -0x7.fp+4f : -0x8p+124f : inexact-ok
+= pow downward dbl-64 -0x8p-4 -0x7.fp+4 : -0x8p+124 : inexact-ok
+= pow tonearest dbl-64 -0x8p-4 -0x7.fp+4 : -0x8p+124 : inexact-ok
+= pow towardzero dbl-64 -0x8p-4 -0x7.fp+4 : -0x8p+124 : inexact-ok
+= pow upward dbl-64 -0x8p-4 -0x7.fp+4 : -0x8p+124 : inexact-ok
+= pow downward ldbl-96-intel -0x8p-4L -0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow towardzero ldbl-96-intel -0x8p-4L -0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow downward ldbl-96-m68k -0x8p-4L -0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow downward ldbl-128 -0x8p-4L -0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow towardzero ldbl-128 -0x8p-4L -0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow upward ldbl-128 -0x8p-4L -0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow downward ldbl-128ibm -0x8p-4L -0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow towardzero ldbl-128ibm -0x8p-4L -0x7.fp+4L : -0x8p+124L : inexact-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x7.fp+4L : -0x8p+124L : inexact-ok
+pow -0.5 -0xffffff
+= pow downward flt-32 -0x8p-4f -0xf.fffffp+20f : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest flt-32 -0x8p-4f -0xf.fffffp+20f : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0xf.fffffp+20f : -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0xf.fffffp+20f : -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 -0xf.fffffp+20 : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 -0xf.fffffp+20 : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0xf.fffffp+20 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0xf.fffffp+20 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0xf.fffffp+20L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0xf.fffffp+20L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -0.5 -0x1fffffe
+= pow downward flt-32 -0x8p-4f -0x1.fffffep+24f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0x1.fffffep+24f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0x1.fffffep+24f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0x1.fffffep+24f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x1.fffffep+24 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x1.fffffep+24 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x1.fffffep+24 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x1.fffffep+24 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x1.fffffep+24L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x1.fffffep+24L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+pow -0.5 -0x1.fffffffffffffp+52
+= pow downward flt-32 -0x8p-4f -0x1.fffffep+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0x1.fffffep+52f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0x1.fffffep+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0x1.fffffep+52f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x1.fffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x1.fffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x1.fffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x1.fffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x1.fffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x1.fffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x8p-4f -0x2p+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0x2p+52f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0x2p+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0x2p+52f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x2p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x2p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x2p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x2p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x2p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x2p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x1.fffffffffffffp+52 : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 -0x1.fffffffffffffp+52 : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x1.fffffffffffffp+52 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x1.fffffffffffffp+52 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x1.fffffffffffffp+52L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x1.fffffffffffffp+52L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -0.5 -0x1.fffffffffffffp+53
+= pow downward flt-32 -0x8p-4f -0x3.fffffcp+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0x3.fffffcp+52f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0x3.fffffcp+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0x3.fffffcp+52f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x3.fffffcp+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x3.fffffcp+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x3.fffffcp+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x3.fffffcp+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x3.fffffcp+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x3.fffffcp+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x8p-4f -0x4p+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0x4p+52f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0x4p+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0x4p+52f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x4p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x4p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x4p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x4p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x4p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x4p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x3.ffffffffffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x3.ffffffffffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x3.ffffffffffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x3.ffffffffffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x3.ffffffffffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x3.ffffffffffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+pow -0.5 -0x1.fffffffffffffffep+63
+= pow downward flt-32 -0x8p-4f -0xf.fffffp+60f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0xf.fffffp+60f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0xf.fffffp+60f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0xf.fffffp+60f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0xf.fffffp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0xf.fffffp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0xf.fffffp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0xf.fffffp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0xf.fffffp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0xf.fffffp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x8p-4f -0x1p+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0x1p+64f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0x1p+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0x1p+64f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x1p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x1p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x1p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x1p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x1p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x1p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0xf.ffffffffffff8p+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0xf.ffffffffffff8p+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0xf.ffffffffffff8p+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0xf.ffffffffffff8p+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0xf.ffffffffffff8p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0xf.ffffffffffff8p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0xf.fffffffffffffffp+60L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0xf.fffffffffffffffp+60L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -0.5 -0x1.fffffffffffffffep+64
+= pow downward flt-32 -0x8p-4f -0x1.fffffep+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0x1.fffffep+64f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0x1.fffffep+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0x1.fffffep+64f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x1.fffffep+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x1.fffffep+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x1.fffffep+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x1.fffffep+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x1.fffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x1.fffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x8p-4f -0x2p+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0x2p+64f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0x2p+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0x2p+64f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x2p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x2p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x2p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x2p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x2p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x2p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x1.fffffffffffffp+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x1.fffffffffffffp+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x1.fffffffffffffp+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x1.fffffffffffffp+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x1.fffffffffffffp+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x1.fffffffffffffp+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x1.fffffffffffffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x1.fffffffffffffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+pow -0.5 -0x1.ffffffffffffffffffffffffff8p+105
+= pow downward flt-32 -0x8p-4f -0x3.fffffcp+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0x3.fffffcp+104f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0x3.fffffcp+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0x3.fffffcp+104f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x3.fffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x3.fffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x3.fffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x3.fffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x3.fffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x3.fffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x8p-4f -0x4p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0x4p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0x4p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0x4p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x4p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x4p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x4p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x4p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x4p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x4p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x3.ffffffffffffep+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x3.ffffffffffffep+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x3.ffffffffffffep+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x3.ffffffffffffep+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x3.ffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x3.ffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x3.fffffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x3.fffffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -0.5 -0x1.ffffffffffffffffffffffffff8p+106
+= pow downward flt-32 -0x8p-4f -0x7.fffff8p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0x7.fffff8p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0x7.fffff8p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0x7.fffff8p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x7.fffff8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x7.fffff8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x7.fffff8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x7.fffff8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x7.fffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x7.fffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x8p-4f -0x8p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0x8p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0x8p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0x8p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x7.ffffffffffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x7.ffffffffffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x7.ffffffffffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x7.ffffffffffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x7.ffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x7.ffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x7.fffffffffffffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x7.fffffffffffffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x7.fffffffffffffffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x7.fffffffffffffffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+pow -0.5 -0x1.ffffffffffffffffffffffffffffp+112
+= pow downward flt-32 -0x8p-4f -0x1.fffffep+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0x1.fffffep+112f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0x1.fffffep+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0x1.fffffep+112f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x1.fffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x1.fffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x1.fffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x1.fffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x1.fffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x1.fffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x8p-4f -0x2p+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0x2p+112f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0x2p+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0x2p+112f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x2p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x2p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x2p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x2p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x2p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x2p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x1.fffffffffffffp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x1.fffffffffffffp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x1.fffffffffffffp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x1.fffffffffffffp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x1.fffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x1.fffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x1.fffffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x1.fffffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L -0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+pow -0.5 -0x1.ffffffffffffffffffffffffffffp+113
+= pow downward flt-32 -0x8p-4f -0x3.fffffcp+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0x3.fffffcp+112f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0x3.fffffcp+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0x3.fffffcp+112f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x3.fffffcp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x3.fffffcp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x3.fffffcp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x3.fffffcp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x3.fffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x3.fffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x8p-4f -0x4p+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0x4p+112f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0x4p+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0x4p+112f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x4p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x4p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x4p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x4p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x4p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x4p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0x3.ffffffffffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0x3.ffffffffffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0x3.ffffffffffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0x3.ffffffffffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x3.ffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x3.ffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x3.fffffffffffffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x3.fffffffffffffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+pow -0.5 -max
+= pow downward flt-32 -0x8p-4f -0xf.fffffp+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f -0xf.fffffp+124f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x8p-4f -0xf.fffffp+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x8p-4f -0xf.fffffp+124f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-4 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 -0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-4 -0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-4L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-4L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-4L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-4L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-4L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+pow -0.5 0xffffff
+= pow downward flt-32 -0x8p-4f 0xf.fffffp+20f : -0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow tonearest flt-32 -0x8p-4f 0xf.fffffp+20f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0xf.fffffp+20f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0xf.fffffp+20f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0x8p-4 0xf.fffffp+20 : -0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L 0xf.fffffp+20L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L 0xf.fffffp+20L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x8p-4L 0xf.fffffp+20L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L 0xf.fffffp+20L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -0.5 0x1fffffe
+= pow downward flt-32 -0x8p-4f 0x1.fffffep+24f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0x1.fffffep+24f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0x1.fffffep+24f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0x1.fffffep+24f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x1.fffffep+24 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x1.fffffep+24L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x1.fffffep+24L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x1.fffffep+24L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x1.fffffep+24L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -0.5 0x1.fffffffffffffp+52
+= pow downward flt-32 -0x8p-4f 0x2p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0x2p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0x2p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0x2p+52f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x2p+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x2p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x2p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x2p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x2p+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x8p-4f 0x1.fffffep+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0x1.fffffep+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0x1.fffffep+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0x1.fffffep+52f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x1.fffffep+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x1.fffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x1.fffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x1.fffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x1.fffffep+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x1.fffffffffffffp+52 : -0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-4 0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x8p-4L 0x1.fffffffffffffp+52L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffp+52L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x8p-4L 0x1.fffffffffffffp+52L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L 0x1.fffffffffffffp+52L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -0.5 0x1.fffffffffffffp+53
+= pow downward flt-32 -0x8p-4f 0x4p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0x4p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0x4p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0x4p+52f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x4p+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x4p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x4p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x4p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x4p+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x8p-4f 0x3.fffffcp+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0x3.fffffcp+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0x3.fffffcp+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0x3.fffffcp+52f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x3.fffffcp+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x3.fffffcp+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x3.fffffcp+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x3.fffffcp+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x3.fffffcp+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x3.ffffffffffffep+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x3.ffffffffffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x3.ffffffffffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x3.ffffffffffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x3.ffffffffffffep+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -0.5 0x1.fffffffffffffffep+63
+= pow downward flt-32 -0x8p-4f 0x1p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0x1p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0x1p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0x1p+64f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x1p+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x1p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x1p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x1p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x1p+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x8p-4f 0xf.fffffp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0xf.fffffp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0xf.fffffp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0xf.fffffp+60f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0xf.fffffp+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0xf.fffffp+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0xf.fffffp+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0xf.fffffp+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0xf.fffffp+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0xf.ffffffffffff8p+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0xf.ffffffffffff8p+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0xf.ffffffffffff8p+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0xf.ffffffffffff8p+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0xf.ffffffffffff8p+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0xf.fffffffffffffffp+60L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-4L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-4L 0xf.fffffffffffffffp+60L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-4L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x8p-4L 0xf.fffffffffffffffp+60L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L 0xf.fffffffffffffffp+60L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -0.5 0x1.fffffffffffffffep+64
+= pow downward flt-32 -0x8p-4f 0x2p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0x2p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0x2p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0x2p+64f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x2p+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x2p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x2p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x2p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x2p+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x8p-4f 0x1.fffffep+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0x1.fffffep+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0x1.fffffep+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0x1.fffffep+64f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x1.fffffep+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x1.fffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x1.fffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x1.fffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x1.fffffep+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x1.fffffffffffffp+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x1.fffffffffffffp+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffp+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x1.fffffffffffffp+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x1.fffffffffffffp+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x1.fffffffffffffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x1.fffffffffffffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x1.fffffffffffffffep+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -0.5 0x1.ffffffffffffffffffffffffff8p+105
+= pow downward flt-32 -0x8p-4f 0x4p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0x4p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0x4p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0x4p+104f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x4p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x4p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x4p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x4p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x4p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x8p-4f 0x3.fffffcp+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0x3.fffffcp+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0x3.fffffcp+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0x3.fffffcp+104f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x3.fffffcp+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x3.fffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x3.fffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x3.fffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x3.fffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x3.ffffffffffffep+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x3.ffffffffffffep+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x3.ffffffffffffep+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x3.ffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x3.ffffffffffffep+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x3.fffffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x3.fffffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x3.fffffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x3.fffffffffffffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x3.ffffffffffffffffffffffffffp+104L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x8p-4L 0x3.ffffffffffffffffffffffffffp+104L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-4L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -0.5 0x1.ffffffffffffffffffffffffff8p+106
+= pow downward flt-32 -0x8p-4f 0x8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0x8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0x8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0x8p+104f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x8p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x8p-4f 0x7.fffff8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0x7.fffff8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0x7.fffff8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0x7.fffff8p+104f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x7.fffff8p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x7.fffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x7.fffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x7.fffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x7.fffff8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x7.ffffffffffffcp+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x7.ffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x7.ffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x7.ffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x7.ffffffffffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x7.fffffffffffffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x7.fffffffffffffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x7.fffffffffffffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x7.fffffffffffffff8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x7.fffffffffffffffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x7.fffffffffffffffffffffffffep+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -0.5 0x1.ffffffffffffffffffffffffffffp+112
+= pow downward flt-32 -0x8p-4f 0x2p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0x2p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0x2p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0x2p+112f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x2p+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x2p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x2p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x2p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x2p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x8p-4f 0x1.fffffep+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0x1.fffffep+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0x1.fffffep+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0x1.fffffep+112f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x1.fffffep+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x1.fffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x1.fffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x1.fffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x1.fffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x1.fffffffffffffp+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x1.fffffffffffffp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x1.fffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x1.fffffffffffffp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x1.fffffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x1.fffffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x1.fffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x1.fffffffffffffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x1.ffffffffffffffffffffffffffffp+112L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-4L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x8p-4L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -0.5 0x1.ffffffffffffffffffffffffffffp+113
+= pow downward flt-32 -0x8p-4f 0x4p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0x4p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0x4p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0x4p+112f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x4p+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x4p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x4p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x4p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x4p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x8p-4f 0x3.fffffcp+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0x3.fffffcp+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0x3.fffffcp+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0x3.fffffcp+112f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x3.fffffcp+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x3.fffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x3.fffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x3.fffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x3.fffffcp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0x3.ffffffffffffep+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x3.ffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x3.ffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x3.ffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x3.ffffffffffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0x3.fffffffffffffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0x3.fffffffffffffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x3.fffffffffffffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x3.fffffffffffffffcp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x3.fffffffffffffffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0x3.ffffffffffffffffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0x3.ffffffffffffffffffffffffffp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -0.5 max
+= pow downward flt-32 -0x8p-4f 0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x8p-4f 0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x8p-4f 0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x8p-4f 0xf.fffffp+124f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0xf.fffffp+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0xf.fffffp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0xf.fffffp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0xf.fffffp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-4 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-4 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-4 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-4 0xf.ffffffffffff8p+1020 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0xf.ffffffffffff8p+1020L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0xf.ffffffffffff8p+1020L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0xf.ffffffffffff8p+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-4L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-4L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-4L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-4L 0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-4L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-4L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-4L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-4L 0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-4L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-4L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-4L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-4L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-4L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-4L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-4L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-4L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -min -2
+= pow downward flt-32 -0x4p-128f -0x2p+0f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0x2p+0f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x2p+0f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x2p+0f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x2p+0 : 0x1p+252 : inexact-ok
+= pow tonearest dbl-64 -0x4p-128 -0x2p+0 : 0x1p+252 : inexact-ok
+= pow towardzero dbl-64 -0x4p-128 -0x2p+0 : 0x1p+252 : inexact-ok
+= pow upward dbl-64 -0x4p-128 -0x2p+0 : 0x1p+252 : inexact-ok
+= pow downward ldbl-96-intel -0x4p-128L -0x2p+0L : 0x1p+252L : inexact-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x2p+0L : 0x1p+252L : inexact-ok
+= pow towardzero ldbl-96-intel -0x4p-128L -0x2p+0L : 0x1p+252L : inexact-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x2p+0L : 0x1p+252L : inexact-ok
+= pow downward ldbl-96-m68k -0x4p-128L -0x2p+0L : 0x1p+252L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x2p+0L : 0x1p+252L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x2p+0L : 0x1p+252L : inexact-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x2p+0L : 0x1p+252L : inexact-ok
+= pow downward ldbl-128 -0x4p-128L -0x2p+0L : 0x1p+252L : inexact-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x2p+0L : 0x1p+252L : inexact-ok
+= pow towardzero ldbl-128 -0x4p-128L -0x2p+0L : 0x1p+252L : inexact-ok
+= pow upward ldbl-128 -0x4p-128L -0x2p+0L : 0x1p+252L : inexact-ok
+= pow downward ldbl-128ibm -0x4p-128L -0x2p+0L : 0x1p+252L : inexact-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x2p+0L : 0x1p+252L : inexact-ok
+= pow towardzero ldbl-128ibm -0x4p-128L -0x2p+0L : 0x1p+252L : inexact-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x2p+0L : 0x1p+252L : inexact-ok
+= pow downward dbl-64 -0x4p-1024 -0x2p+0 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x2p+0 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x2p+0 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x2p+0 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x2p+0L : 0x1p+2044L : inexact-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x2p+0L : 0x1p+2044L : inexact-ok
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x2p+0L : 0x1p+2044L : inexact-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x2p+0L : 0x1p+2044L : inexact-ok
+= pow downward ldbl-96-m68k -0x4p-1024L -0x2p+0L : 0x1p+2044L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x2p+0L : 0x1p+2044L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x2p+0L : 0x1p+2044L : inexact-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x2p+0L : 0x1p+2044L : inexact-ok
+= pow downward ldbl-128 -0x4p-1024L -0x2p+0L : 0x1p+2044L : inexact-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x2p+0L : 0x1p+2044L : inexact-ok
+= pow towardzero ldbl-128 -0x4p-1024L -0x2p+0L : 0x1p+2044L : inexact-ok
+= pow upward ldbl-128 -0x4p-1024L -0x2p+0L : 0x1p+2044L : inexact-ok
+= pow downward ldbl-128ibm -0x4p-1024L -0x2p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x2p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x2p+0L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x2p+0L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x2p+0L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x2p+0L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x2p+0L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x2p+0L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x2p+0L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x2p+0L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x2p+0L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x2p+0L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x2p+0L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x2p+0L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x2p+0 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x2p+0 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x2p+0 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x2p+0 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x2p+0L : 0x4p+1936L : inexact-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x2p+0L : 0x4p+1936L : inexact-ok
+= pow towardzero ldbl-96-intel -0x8p-972L -0x2p+0L : 0x4p+1936L : inexact-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x2p+0L : 0x4p+1936L : inexact-ok
+= pow downward ldbl-96-m68k -0x8p-972L -0x2p+0L : 0x4p+1936L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x2p+0L : 0x4p+1936L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x2p+0L : 0x4p+1936L : inexact-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x2p+0L : 0x4p+1936L : inexact-ok
+= pow downward ldbl-128 -0x8p-972L -0x2p+0L : 0x4p+1936L : inexact-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x2p+0L : 0x4p+1936L : inexact-ok
+= pow towardzero ldbl-128 -0x8p-972L -0x2p+0L : 0x4p+1936L : inexact-ok
+= pow upward ldbl-128 -0x8p-972L -0x2p+0L : 0x4p+1936L : inexact-ok
+= pow downward ldbl-128ibm -0x8p-972L -0x2p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x2p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x2p+0L : plus_infty : inexact-ok overflow errno-erange
+pow -min -3
+= pow downward flt-32 -0x4p-128f -0x3p+0f : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest flt-32 -0x4p-128f -0x3p+0f : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x3p+0f : -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x3p+0f : -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 -0x3p+0 : -0x4p+376 : inexact-ok
+= pow tonearest dbl-64 -0x4p-128 -0x3p+0 : -0x4p+376 : inexact-ok
+= pow towardzero dbl-64 -0x4p-128 -0x3p+0 : -0x4p+376 : inexact-ok
+= pow upward dbl-64 -0x4p-128 -0x3p+0 : -0x4p+376 : inexact-ok
+= pow downward ldbl-96-intel -0x4p-128L -0x3p+0L : -0x4p+376L : inexact-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x3p+0L : -0x4p+376L : inexact-ok
+= pow towardzero ldbl-96-intel -0x4p-128L -0x3p+0L : -0x4p+376L : inexact-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x3p+0L : -0x4p+376L : inexact-ok
+= pow downward ldbl-96-m68k -0x4p-128L -0x3p+0L : -0x4p+376L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x3p+0L : -0x4p+376L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x3p+0L : -0x4p+376L : inexact-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x3p+0L : -0x4p+376L : inexact-ok
+= pow downward ldbl-128 -0x4p-128L -0x3p+0L : -0x4p+376L : inexact-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x3p+0L : -0x4p+376L : inexact-ok
+= pow towardzero ldbl-128 -0x4p-128L -0x3p+0L : -0x4p+376L : inexact-ok
+= pow upward ldbl-128 -0x4p-128L -0x3p+0L : -0x4p+376L : inexact-ok
+= pow downward ldbl-128ibm -0x4p-128L -0x3p+0L : -0x4p+376L : inexact-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x3p+0L : -0x4p+376L : inexact-ok
+= pow towardzero ldbl-128ibm -0x4p-128L -0x3p+0L : -0x4p+376L : inexact-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x3p+0L : -0x4p+376L : inexact-ok
+= pow downward dbl-64 -0x4p-1024 -0x3p+0 : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 -0x3p+0 : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x3p+0 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x3p+0 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L -0x3p+0L : -0x4p+3064L : inexact-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x3p+0L : -0x4p+3064L : inexact-ok
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x3p+0L : -0x4p+3064L : inexact-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x3p+0L : -0x4p+3064L : inexact-ok
+= pow downward ldbl-96-m68k -0x4p-1024L -0x3p+0L : -0x4p+3064L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x3p+0L : -0x4p+3064L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x3p+0L : -0x4p+3064L : inexact-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x3p+0L : -0x4p+3064L : inexact-ok
+= pow downward ldbl-128 -0x4p-1024L -0x3p+0L : -0x4p+3064L : inexact-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x3p+0L : -0x4p+3064L : inexact-ok
+= pow towardzero ldbl-128 -0x4p-1024L -0x3p+0L : -0x4p+3064L : inexact-ok
+= pow upward ldbl-128 -0x4p-1024L -0x3p+0L : -0x4p+3064L : inexact-ok
+= pow downward ldbl-128ibm -0x4p-1024L -0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x3p+0L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x3p+0L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L -0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x3p+0L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x3p+0L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L -0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x3p+0L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x3p+0L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L -0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L -0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x3p+0L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x3p+0L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L -0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x3p+0L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x3p+0L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L -0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x3p+0L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x3p+0L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L -0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L -0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x3p+0L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x3p+0L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 -0x3p+0 : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 -0x3p+0 : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x3p+0 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x3p+0 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L -0x3p+0L : -0x8p+2904L : inexact-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x3p+0L : -0x8p+2904L : inexact-ok
+= pow towardzero ldbl-96-intel -0x8p-972L -0x3p+0L : -0x8p+2904L : inexact-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x3p+0L : -0x8p+2904L : inexact-ok
+= pow downward ldbl-96-m68k -0x8p-972L -0x3p+0L : -0x8p+2904L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x3p+0L : -0x8p+2904L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x3p+0L : -0x8p+2904L : inexact-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x3p+0L : -0x8p+2904L : inexact-ok
+= pow downward ldbl-128 -0x8p-972L -0x3p+0L : -0x8p+2904L : inexact-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x3p+0L : -0x8p+2904L : inexact-ok
+= pow towardzero ldbl-128 -0x8p-972L -0x3p+0L : -0x8p+2904L : inexact-ok
+= pow upward ldbl-128 -0x8p-972L -0x3p+0L : -0x8p+2904L : inexact-ok
+= pow downward ldbl-128ibm -0x8p-972L -0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L -0x3p+0L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x3p+0L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x3p+0L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -min 1
+= pow downward flt-32 -0x4p-128f 0x1p+0f : -0x4p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f 0x1p+0f : -0x4p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow towardzero flt-32 -0x4p-128f 0x1p+0f : -0x4p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow upward flt-32 -0x4p-128f 0x1p+0f : -0x4p-128f : inexact-ok underflow-ok errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x1p+0 : -0x4p-128 : inexact-ok
+= pow tonearest dbl-64 -0x4p-128 0x1p+0 : -0x4p-128 : inexact-ok
+= pow towardzero dbl-64 -0x4p-128 0x1p+0 : -0x4p-128 : inexact-ok
+= pow upward dbl-64 -0x4p-128 0x1p+0 : -0x4p-128 : inexact-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x1p+0L : -0x4p-128L : inexact-ok
+= pow tonearest ldbl-96-intel -0x4p-128L 0x1p+0L : -0x4p-128L : inexact-ok
+= pow towardzero ldbl-96-intel -0x4p-128L 0x1p+0L : -0x4p-128L : inexact-ok
+= pow upward ldbl-96-intel -0x4p-128L 0x1p+0L : -0x4p-128L : inexact-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x1p+0L : -0x4p-128L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x1p+0L : -0x4p-128L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x1p+0L : -0x4p-128L : inexact-ok
+= pow upward ldbl-96-m68k -0x4p-128L 0x1p+0L : -0x4p-128L : inexact-ok
+= pow downward ldbl-128 -0x4p-128L 0x1p+0L : -0x4p-128L : inexact-ok
+= pow tonearest ldbl-128 -0x4p-128L 0x1p+0L : -0x4p-128L : inexact-ok
+= pow towardzero ldbl-128 -0x4p-128L 0x1p+0L : -0x4p-128L : inexact-ok
+= pow upward ldbl-128 -0x4p-128L 0x1p+0L : -0x4p-128L : inexact-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x1p+0L : -0x4p-128L : inexact-ok
+= pow tonearest ldbl-128ibm -0x4p-128L 0x1p+0L : -0x4p-128L : inexact-ok
+= pow towardzero ldbl-128ibm -0x4p-128L 0x1p+0L : -0x4p-128L : inexact-ok
+= pow upward ldbl-128ibm -0x4p-128L 0x1p+0L : -0x4p-128L : inexact-ok
+= pow downward dbl-64 -0x4p-1024 0x1p+0 : -0x4p-1024 : inexact-ok underflow-ok errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 0x1p+0 : -0x4p-1024 : inexact-ok underflow-ok errno-erange-ok
+= pow towardzero dbl-64 -0x4p-1024 0x1p+0 : -0x4p-1024 : inexact-ok underflow-ok errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 0x1p+0 : -0x4p-1024 : inexact-ok underflow-ok errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x1p+0L : -0x4p-1024L : inexact-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x1p+0L : -0x4p-1024L : inexact-ok
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x1p+0L : -0x4p-1024L : inexact-ok
+= pow upward ldbl-96-intel -0x4p-1024L 0x1p+0L : -0x4p-1024L : inexact-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x1p+0L : -0x4p-1024L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x1p+0L : -0x4p-1024L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x1p+0L : -0x4p-1024L : inexact-ok
+= pow upward ldbl-96-m68k -0x4p-1024L 0x1p+0L : -0x4p-1024L : inexact-ok
+= pow downward ldbl-128 -0x4p-1024L 0x1p+0L : -0x4p-1024L : inexact-ok
+= pow tonearest ldbl-128 -0x4p-1024L 0x1p+0L : -0x4p-1024L : inexact-ok
+= pow towardzero ldbl-128 -0x4p-1024L 0x1p+0L : -0x4p-1024L : inexact-ok
+= pow upward ldbl-128 -0x4p-1024L 0x1p+0L : -0x4p-1024L : inexact-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x1p+0L : -0x4p-1024L : inexact-ok underflow-ok errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x1p+0L : -0x4p-1024L : inexact-ok underflow-ok errno-erange-ok
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x1p+0L : -0x4p-1024L : inexact-ok underflow-ok errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L 0x1p+0L : -0x4p-1024L : inexact-ok underflow-ok errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x1p+0L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x1p+0L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x1p+0L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L 0x1p+0L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x1p+0L : -0x4p-16384L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x1p+0L : -0x4p-16384L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x1p+0L : -0x4p-16384L : inexact-ok
+= pow upward ldbl-96-m68k -0x4p-16384L 0x1p+0L : -0x4p-16384L : inexact-ok
+= pow downward ldbl-128 -0x4p-16384L 0x1p+0L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L 0x1p+0L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow towardzero ldbl-128 -0x4p-16384L 0x1p+0L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L 0x1p+0L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x1p+0L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x1p+0L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x1p+0L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L 0x1p+0L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x1p+0L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x1p+0L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x1p+0L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L 0x1p+0L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x1p+0L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L 0x1p+0L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow towardzero ldbl-128 -0x2p-16384L 0x1p+0L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L 0x1p+0L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x1p+0 : -0x8p-972 : inexact-ok
+= pow tonearest dbl-64 -0x8p-972 0x1p+0 : -0x8p-972 : inexact-ok
+= pow towardzero dbl-64 -0x8p-972 0x1p+0 : -0x8p-972 : inexact-ok
+= pow upward dbl-64 -0x8p-972 0x1p+0 : -0x8p-972 : inexact-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x1p+0L : -0x8p-972L : inexact-ok
+= pow tonearest ldbl-96-intel -0x8p-972L 0x1p+0L : -0x8p-972L : inexact-ok
+= pow towardzero ldbl-96-intel -0x8p-972L 0x1p+0L : -0x8p-972L : inexact-ok
+= pow upward ldbl-96-intel -0x8p-972L 0x1p+0L : -0x8p-972L : inexact-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x1p+0L : -0x8p-972L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x1p+0L : -0x8p-972L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x1p+0L : -0x8p-972L : inexact-ok
+= pow upward ldbl-96-m68k -0x8p-972L 0x1p+0L : -0x8p-972L : inexact-ok
+= pow downward ldbl-128 -0x8p-972L 0x1p+0L : -0x8p-972L : inexact-ok
+= pow tonearest ldbl-128 -0x8p-972L 0x1p+0L : -0x8p-972L : inexact-ok
+= pow towardzero ldbl-128 -0x8p-972L 0x1p+0L : -0x8p-972L : inexact-ok
+= pow upward ldbl-128 -0x8p-972L 0x1p+0L : -0x8p-972L : inexact-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x1p+0L : -0x8p-972L : inexact-ok underflow-ok errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L 0x1p+0L : -0x8p-972L : inexact-ok underflow-ok errno-erange-ok
+= pow towardzero ldbl-128ibm -0x8p-972L 0x1p+0L : -0x8p-972L : inexact-ok underflow-ok errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L 0x1p+0L : -0x8p-972L : inexact-ok underflow-ok errno-erange-ok
+pow -min 2
+= pow downward flt-32 -0x4p-128f 0x2p+0f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0x2p+0f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x2p+0f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x2p+0f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x2p+0 : 0x1p-252 : inexact-ok
+= pow tonearest dbl-64 -0x4p-128 0x2p+0 : 0x1p-252 : inexact-ok
+= pow towardzero dbl-64 -0x4p-128 0x2p+0 : 0x1p-252 : inexact-ok
+= pow upward dbl-64 -0x4p-128 0x2p+0 : 0x1p-252 : inexact-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x2p+0L : 0x1p-252L : inexact-ok
+= pow tonearest ldbl-96-intel -0x4p-128L 0x2p+0L : 0x1p-252L : inexact-ok
+= pow towardzero ldbl-96-intel -0x4p-128L 0x2p+0L : 0x1p-252L : inexact-ok
+= pow upward ldbl-96-intel -0x4p-128L 0x2p+0L : 0x1p-252L : inexact-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x2p+0L : 0x1p-252L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x2p+0L : 0x1p-252L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x2p+0L : 0x1p-252L : inexact-ok
+= pow upward ldbl-96-m68k -0x4p-128L 0x2p+0L : 0x1p-252L : inexact-ok
+= pow downward ldbl-128 -0x4p-128L 0x2p+0L : 0x1p-252L : inexact-ok
+= pow tonearest ldbl-128 -0x4p-128L 0x2p+0L : 0x1p-252L : inexact-ok
+= pow towardzero ldbl-128 -0x4p-128L 0x2p+0L : 0x1p-252L : inexact-ok
+= pow upward ldbl-128 -0x4p-128L 0x2p+0L : 0x1p-252L : inexact-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x2p+0L : 0x1p-252L : inexact-ok
+= pow tonearest ldbl-128ibm -0x4p-128L 0x2p+0L : 0x1p-252L : inexact-ok
+= pow towardzero ldbl-128ibm -0x4p-128L 0x2p+0L : 0x1p-252L : inexact-ok
+= pow upward ldbl-128ibm -0x4p-128L 0x2p+0L : 0x1p-252L : inexact-ok
+= pow downward dbl-64 -0x4p-1024 0x2p+0 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x2p+0 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x2p+0 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x2p+0 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x2p+0L : 0x1p-2044L : inexact-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x2p+0L : 0x1p-2044L : inexact-ok
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x2p+0L : 0x1p-2044L : inexact-ok
+= pow upward ldbl-96-intel -0x4p-1024L 0x2p+0L : 0x1p-2044L : inexact-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x2p+0L : 0x1p-2044L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x2p+0L : 0x1p-2044L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x2p+0L : 0x1p-2044L : inexact-ok
+= pow upward ldbl-96-m68k -0x4p-1024L 0x2p+0L : 0x1p-2044L : inexact-ok
+= pow downward ldbl-128 -0x4p-1024L 0x2p+0L : 0x1p-2044L : inexact-ok
+= pow tonearest ldbl-128 -0x4p-1024L 0x2p+0L : 0x1p-2044L : inexact-ok
+= pow towardzero ldbl-128 -0x4p-1024L 0x2p+0L : 0x1p-2044L : inexact-ok
+= pow upward ldbl-128 -0x4p-1024L 0x2p+0L : 0x1p-2044L : inexact-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x2p+0L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x2p+0L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x2p+0L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x2p+0L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x2p+0L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x2p+0L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x2p+0L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x2p+0 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x2p+0 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x2p+0 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x2p+0 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x2p+0L : 0x4p-1940L : inexact-ok
+= pow tonearest ldbl-96-intel -0x8p-972L 0x2p+0L : 0x4p-1940L : inexact-ok
+= pow towardzero ldbl-96-intel -0x8p-972L 0x2p+0L : 0x4p-1940L : inexact-ok
+= pow upward ldbl-96-intel -0x8p-972L 0x2p+0L : 0x4p-1940L : inexact-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x2p+0L : 0x4p-1940L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x2p+0L : 0x4p-1940L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x2p+0L : 0x4p-1940L : inexact-ok
+= pow upward ldbl-96-m68k -0x8p-972L 0x2p+0L : 0x4p-1940L : inexact-ok
+= pow downward ldbl-128 -0x8p-972L 0x2p+0L : 0x4p-1940L : inexact-ok
+= pow tonearest ldbl-128 -0x8p-972L 0x2p+0L : 0x4p-1940L : inexact-ok
+= pow towardzero ldbl-128 -0x8p-972L 0x2p+0L : 0x4p-1940L : inexact-ok
+= pow upward ldbl-128 -0x8p-972L 0x2p+0L : 0x4p-1940L : inexact-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x2p+0L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x2p+0L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -min 3
+= pow downward flt-32 -0x4p-128f 0x3p+0f : -0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f 0x3p+0f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x3p+0f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x3p+0f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0x4p-128 0x3p+0 : -0x4p-380 : inexact-ok
+= pow tonearest dbl-64 -0x4p-128 0x3p+0 : -0x4p-380 : inexact-ok
+= pow towardzero dbl-64 -0x4p-128 0x3p+0 : -0x4p-380 : inexact-ok
+= pow upward dbl-64 -0x4p-128 0x3p+0 : -0x4p-380 : inexact-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x3p+0L : -0x4p-380L : inexact-ok
+= pow tonearest ldbl-96-intel -0x4p-128L 0x3p+0L : -0x4p-380L : inexact-ok
+= pow towardzero ldbl-96-intel -0x4p-128L 0x3p+0L : -0x4p-380L : inexact-ok
+= pow upward ldbl-96-intel -0x4p-128L 0x3p+0L : -0x4p-380L : inexact-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x3p+0L : -0x4p-380L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x3p+0L : -0x4p-380L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x3p+0L : -0x4p-380L : inexact-ok
+= pow upward ldbl-96-m68k -0x4p-128L 0x3p+0L : -0x4p-380L : inexact-ok
+= pow downward ldbl-128 -0x4p-128L 0x3p+0L : -0x4p-380L : inexact-ok
+= pow tonearest ldbl-128 -0x4p-128L 0x3p+0L : -0x4p-380L : inexact-ok
+= pow towardzero ldbl-128 -0x4p-128L 0x3p+0L : -0x4p-380L : inexact-ok
+= pow upward ldbl-128 -0x4p-128L 0x3p+0L : -0x4p-380L : inexact-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x3p+0L : -0x4p-380L : inexact-ok
+= pow tonearest ldbl-128ibm -0x4p-128L 0x3p+0L : -0x4p-380L : inexact-ok
+= pow towardzero ldbl-128ibm -0x4p-128L 0x3p+0L : -0x4p-380L : inexact-ok
+= pow upward ldbl-128ibm -0x4p-128L 0x3p+0L : -0x4p-380L : inexact-ok
+= pow downward dbl-64 -0x4p-1024 0x3p+0 : -0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 0x3p+0 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x3p+0 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x3p+0 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L 0x3p+0L : -0x4p-3068L : inexact-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x3p+0L : -0x4p-3068L : inexact-ok
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x3p+0L : -0x4p-3068L : inexact-ok
+= pow upward ldbl-96-intel -0x4p-1024L 0x3p+0L : -0x4p-3068L : inexact-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x3p+0L : -0x4p-3068L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x3p+0L : -0x4p-3068L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x3p+0L : -0x4p-3068L : inexact-ok
+= pow upward ldbl-96-m68k -0x4p-1024L 0x3p+0L : -0x4p-3068L : inexact-ok
+= pow downward ldbl-128 -0x4p-1024L 0x3p+0L : -0x4p-3068L : inexact-ok
+= pow tonearest ldbl-128 -0x4p-1024L 0x3p+0L : -0x4p-3068L : inexact-ok
+= pow towardzero ldbl-128 -0x4p-1024L 0x3p+0L : -0x4p-3068L : inexact-ok
+= pow upward ldbl-128 -0x4p-1024L 0x3p+0L : -0x4p-3068L : inexact-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x3p+0L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L 0x3p+0L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L 0x3p+0L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L 0x3p+0L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L 0x3p+0L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L 0x3p+0L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L 0x3p+0L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0x8p-972 0x3p+0 : -0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 0x3p+0 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x3p+0 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x3p+0 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L 0x3p+0L : -0x2p-2908L : inexact-ok
+= pow tonearest ldbl-96-intel -0x8p-972L 0x3p+0L : -0x2p-2908L : inexact-ok
+= pow towardzero ldbl-96-intel -0x8p-972L 0x3p+0L : -0x2p-2908L : inexact-ok
+= pow upward ldbl-96-intel -0x8p-972L 0x3p+0L : -0x2p-2908L : inexact-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x3p+0L : -0x2p-2908L : inexact-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x3p+0L : -0x2p-2908L : inexact-ok
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x3p+0L : -0x2p-2908L : inexact-ok
+= pow upward ldbl-96-m68k -0x8p-972L 0x3p+0L : -0x2p-2908L : inexact-ok
+= pow downward ldbl-128 -0x8p-972L 0x3p+0L : -0x2p-2908L : inexact-ok
+= pow tonearest ldbl-128 -0x8p-972L 0x3p+0L : -0x2p-2908L : inexact-ok
+= pow towardzero ldbl-128 -0x8p-972L 0x3p+0L : -0x2p-2908L : inexact-ok
+= pow upward ldbl-128 -0x8p-972L 0x3p+0L : -0x2p-2908L : inexact-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x3p+0L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x3p+0L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -min -0xffffff
+= pow downward flt-32 -0x4p-128f -0xf.fffffp+20f : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest flt-32 -0x4p-128f -0xf.fffffp+20f : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0xf.fffffp+20f : -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0xf.fffffp+20f : -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 -0xf.fffffp+20 : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 -0xf.fffffp+20 : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0xf.fffffp+20 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0xf.fffffp+20 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0xf.fffffp+20L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0xf.fffffp+20L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 -0xf.fffffp+20 : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 -0xf.fffffp+20 : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0xf.fffffp+20 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0xf.fffffp+20 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0xf.fffffp+20L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0xf.fffffp+20L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 -0xf.fffffp+20 : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 -0xf.fffffp+20 : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0xf.fffffp+20 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0xf.fffffp+20 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0xf.fffffp+20L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0xf.fffffp+20L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L -0xf.fffffp+20L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0xf.fffffp+20L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0xf.fffffp+20L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -min -0x1fffffe
+= pow downward flt-32 -0x4p-128f -0x1.fffffep+24f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0x1.fffffep+24f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x1.fffffep+24f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x1.fffffep+24f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x1.fffffep+24 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x1.fffffep+24 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x1.fffffep+24 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x1.fffffep+24 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x1.fffffep+24L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x1.fffffep+24L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x1.fffffep+24 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x1.fffffep+24 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x1.fffffep+24 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x1.fffffep+24 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x1.fffffep+24L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x1.fffffep+24L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x1.fffffep+24 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x1.fffffep+24 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x1.fffffep+24 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x1.fffffep+24 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x1.fffffep+24L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x1.fffffep+24L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x1.fffffep+24L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x1.fffffep+24L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x1.fffffep+24L : plus_infty : inexact-ok overflow errno-erange
+pow -min -0x1.fffffffffffffp+52
+= pow downward flt-32 -0x4p-128f -0x1.fffffep+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0x1.fffffep+52f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x1.fffffep+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x1.fffffep+52f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x1.fffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x1.fffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x1.fffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x1.fffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x1.fffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x1.fffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x4p-128f -0x2p+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0x2p+52f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x2p+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x2p+52f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x2p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x2p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x2p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x2p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x2p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x2p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x1.fffffffffffffp+52 : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 -0x1.fffffffffffffp+52 : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x1.fffffffffffffp+52 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x1.fffffffffffffp+52 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x1.fffffffffffffp+52L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x1.fffffffffffffp+52L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 -0x1.fffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x1.fffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x1.fffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x1.fffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x1.fffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x1.fffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x2p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x2p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x2p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x2p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x2p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x2p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x1.fffffffffffffp+52 : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 -0x1.fffffffffffffp+52 : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x1.fffffffffffffp+52 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x1.fffffffffffffp+52 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffp+52L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffp+52L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 -0x1.fffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x1.fffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x1.fffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x1.fffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x1.fffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x1.fffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x1.fffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x1.fffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x1.fffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x2p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x2p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x2p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x2p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x2p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x2p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x2p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x2p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x2p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x1.fffffffffffffp+52 : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 -0x1.fffffffffffffp+52 : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x1.fffffffffffffp+52 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x1.fffffffffffffp+52 : -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x1.fffffffffffffp+52L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L -0x1.fffffffffffffp+52L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x1.fffffffffffffp+52L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x1.fffffffffffffp+52L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -min -0x1.fffffffffffffp+53
+= pow downward flt-32 -0x4p-128f -0x3.fffffcp+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0x3.fffffcp+52f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x3.fffffcp+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x3.fffffcp+52f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x3.fffffcp+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x3.fffffcp+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x3.fffffcp+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x3.fffffcp+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x3.fffffcp+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x3.fffffcp+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x4p-128f -0x4p+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0x4p+52f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x4p+52f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x4p+52f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x4p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x4p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x4p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x4p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x4p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x4p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x3.ffffffffffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x3.ffffffffffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x3.ffffffffffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x3.ffffffffffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x3.ffffffffffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x3.ffffffffffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x3.fffffcp+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x3.fffffcp+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x3.fffffcp+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x3.fffffcp+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x3.fffffcp+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x3.fffffcp+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x4p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x4p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x4p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x4p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x4p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x4p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x3.ffffffffffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x3.ffffffffffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x3.ffffffffffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x3.ffffffffffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x3.fffffcp+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x3.fffffcp+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x3.fffffcp+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x3.fffffcp+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x3.fffffcp+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x3.fffffcp+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x3.fffffcp+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x3.fffffcp+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x3.fffffcp+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x4p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x4p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x4p+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x4p+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x4p+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x4p+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x4p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x4p+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x4p+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x3.ffffffffffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x3.ffffffffffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x3.ffffffffffffep+52 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x3.ffffffffffffep+52 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x3.ffffffffffffep+52L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x3.ffffffffffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x3.ffffffffffffep+52L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x3.ffffffffffffep+52L : plus_infty : inexact-ok overflow errno-erange
+pow -min -0x1.fffffffffffffffep+63
+= pow downward flt-32 -0x4p-128f -0xf.fffffp+60f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0xf.fffffp+60f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0xf.fffffp+60f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0xf.fffffp+60f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0xf.fffffp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0xf.fffffp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0xf.fffffp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0xf.fffffp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0xf.fffffp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0xf.fffffp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x4p-128f -0x1p+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0x1p+64f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x1p+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x1p+64f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x1p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x1p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x1p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x1p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x1p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x1p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0xf.ffffffffffff8p+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0xf.ffffffffffff8p+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0xf.ffffffffffff8p+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0xf.ffffffffffff8p+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0xf.ffffffffffff8p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0xf.ffffffffffff8p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0xf.fffffffffffffffp+60L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0xf.fffffffffffffffp+60L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 -0xf.fffffp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0xf.fffffp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0xf.fffffp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0xf.fffffp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0xf.fffffp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0xf.fffffp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x1p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x1p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x1p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x1p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x1p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x1p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0xf.ffffffffffff8p+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0xf.ffffffffffff8p+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0xf.ffffffffffff8p+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0xf.ffffffffffff8p+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0xf.ffffffffffff8p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0xf.ffffffffffff8p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0xf.fffffffffffffffp+60L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0xf.fffffffffffffffp+60L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 -0xf.fffffp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0xf.fffffp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0xf.fffffp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0xf.fffffp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0xf.fffffp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0xf.fffffp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0xf.fffffp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0xf.fffffp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0xf.fffffp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x1p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x1p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x1p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x1p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x1p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x1p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x1p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x1p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x1p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0xf.ffffffffffff8p+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0xf.ffffffffffff8p+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0xf.ffffffffffff8p+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0xf.ffffffffffff8p+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0xf.ffffffffffff8p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0xf.ffffffffffff8p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0xf.ffffffffffff8p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0xf.ffffffffffff8p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0xf.fffffffffffffffp+60L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L -0xf.fffffffffffffffp+60L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0xf.fffffffffffffffp+60L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0xf.fffffffffffffffp+60L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -min -0x1.fffffffffffffffep+64
+= pow downward flt-32 -0x4p-128f -0x1.fffffep+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0x1.fffffep+64f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x1.fffffep+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x1.fffffep+64f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x1.fffffep+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x1.fffffep+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x1.fffffep+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x1.fffffep+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x1.fffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x1.fffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x4p-128f -0x2p+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0x2p+64f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x2p+64f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x2p+64f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x2p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x2p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x2p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x2p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x2p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x2p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x1.fffffffffffffp+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x1.fffffffffffffp+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x1.fffffffffffffp+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x1.fffffffffffffp+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x1.fffffffffffffp+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x1.fffffffffffffp+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x1.fffffffffffffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x1.fffffffffffffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x1.fffffep+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x1.fffffep+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x1.fffffep+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x1.fffffep+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x1.fffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x1.fffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x2p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x2p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x2p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x2p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x2p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x2p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x1.fffffffffffffp+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x1.fffffffffffffp+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x1.fffffffffffffp+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x1.fffffffffffffp+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffp+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffp+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x1.fffffep+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x1.fffffep+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x1.fffffep+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x1.fffffep+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x1.fffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x1.fffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x1.fffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x1.fffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x1.fffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x2p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x2p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x2p+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x2p+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x2p+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x2p+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x2p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x2p+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x2p+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x1.fffffffffffffp+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x1.fffffffffffffp+64 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x1.fffffffffffffp+64 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x1.fffffffffffffp+64 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x1.fffffffffffffp+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x1.fffffffffffffp+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x1.fffffffffffffp+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x1.fffffffffffffp+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x1.fffffffffffffffep+64L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x1.fffffffffffffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x1.fffffffffffffffep+64L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x1.fffffffffffffffep+64L : plus_infty : inexact-ok overflow errno-erange
+pow -min -0x1.ffffffffffffffffffffffffff8p+105
+= pow downward flt-32 -0x4p-128f -0x3.fffffcp+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0x3.fffffcp+104f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x3.fffffcp+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x3.fffffcp+104f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x3.fffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x3.fffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x3.fffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x3.fffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x3.fffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x3.fffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x4p-128f -0x4p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0x4p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x4p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x4p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x4p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x4p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x4p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x4p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x4p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x4p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x3.ffffffffffffep+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x3.ffffffffffffep+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x3.ffffffffffffep+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x3.ffffffffffffep+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x3.ffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x3.ffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x3.fffffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x3.fffffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 -0x3.fffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x3.fffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x3.fffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x3.fffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x3.fffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x3.fffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x4p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x4p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x4p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x4p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x4p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x4p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x3.ffffffffffffep+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x3.ffffffffffffep+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x3.ffffffffffffep+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x3.ffffffffffffep+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x3.fffffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x3.fffffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 -0x3.fffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x3.fffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x3.fffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x3.fffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x3.fffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x3.fffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x3.fffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x3.fffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x3.fffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x4p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x4p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x4p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x4p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x4p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x4p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x4p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x4p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x4p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x3.ffffffffffffep+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x3.ffffffffffffep+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x3.ffffffffffffep+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x3.ffffffffffffep+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x3.ffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x3.ffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x3.ffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x3.ffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x3.fffffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x3.fffffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x3.fffffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x3.fffffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L -0x3.ffffffffffffffffffffffffffp+104L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x3.ffffffffffffffffffffffffffp+104L : -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+pow -min -0x1.ffffffffffffffffffffffffff8p+106
+= pow downward flt-32 -0x4p-128f -0x7.fffff8p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0x7.fffff8p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x7.fffff8p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x7.fffff8p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x7.fffff8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x7.fffff8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x7.fffff8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x7.fffff8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x7.fffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x7.fffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x4p-128f -0x8p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0x8p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x8p+104f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x8p+104f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x7.ffffffffffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x7.ffffffffffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x7.ffffffffffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x7.ffffffffffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x7.ffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x7.ffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x7.fffffffffffffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x7.fffffffffffffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x7.fffffffffffffffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x7.fffffffffffffffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x7.fffff8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x7.fffff8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x7.fffff8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x7.fffff8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x7.fffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x7.fffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x7.ffffffffffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x7.ffffffffffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x7.ffffffffffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x7.ffffffffffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x7.ffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x7.ffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x7.fffffffffffffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x7.fffffffffffffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x7.fffffffffffffffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x7.fffffffffffffffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x7.fffff8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x7.fffff8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x7.fffff8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x7.fffff8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x7.fffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x7.fffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x7.fffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x7.fffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x7.fffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x8p+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x8p+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x7.ffffffffffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x7.ffffffffffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x7.ffffffffffffcp+104 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x7.ffffffffffffcp+104 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x7.ffffffffffffcp+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x7.ffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x7.ffffffffffffcp+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x7.ffffffffffffcp+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x7.fffffffffffffff8p+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x7.fffffffffffffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x7.fffffffffffffff8p+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x7.fffffffffffffff8p+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x7.fffffffffffffffffffffffffep+104L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x7.fffffffffffffffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x7.fffffffffffffffffffffffffep+104L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x7.fffffffffffffffffffffffffep+104L : plus_infty : inexact-ok overflow errno-erange
+pow -min -0x1.ffffffffffffffffffffffffffffp+112
+= pow downward flt-32 -0x4p-128f -0x1.fffffep+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0x1.fffffep+112f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x1.fffffep+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x1.fffffep+112f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x1.fffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x1.fffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x1.fffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x1.fffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x1.fffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x1.fffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x4p-128f -0x2p+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0x2p+112f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x2p+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x2p+112f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x2p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x2p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x2p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x2p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x2p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x2p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x1.fffffffffffffp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x1.fffffffffffffp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x1.fffffffffffffp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x1.fffffffffffffp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x1.fffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x1.fffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x1.fffffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x1.fffffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L -0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x1.fffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x1.fffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x1.fffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x1.fffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x1.fffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x1.fffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x2p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x2p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x2p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x2p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x2p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x2p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x1.fffffffffffffp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x1.fffffffffffffp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x1.fffffffffffffp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x1.fffffffffffffp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L -0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L -0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L -0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x1.fffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x1.fffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x1.fffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x1.fffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x1.fffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x1.fffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x1.fffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x1.fffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x1.fffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x2p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x2p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x2p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x2p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x2p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x2p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x2p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x2p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x2p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x1.fffffffffffffp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x1.fffffffffffffp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x1.fffffffffffffp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x1.fffffffffffffp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x1.fffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x1.fffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x1.fffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x1.fffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x1.fffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x1.fffffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x1.fffffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x1.fffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L -0x1.ffffffffffffffffffffffffffffp+112L : minus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x1.ffffffffffffffffffffffffffffp+112L : -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x1.ffffffffffffffffffffffffff8p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x1.ffffffffffffffffffffffffff8p+112L : plus_infty : inexact-ok overflow errno-erange
+pow -min -0x1.ffffffffffffffffffffffffffffp+113
+= pow downward flt-32 -0x4p-128f -0x3.fffffcp+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0x3.fffffcp+112f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x3.fffffcp+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x3.fffffcp+112f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x3.fffffcp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x3.fffffcp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x3.fffffcp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x3.fffffcp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x3.fffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x3.fffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 -0x4p-128f -0x4p+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0x4p+112f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0x4p+112f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0x4p+112f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x4p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x4p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x4p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x4p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x4p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x4p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0x3.ffffffffffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0x3.ffffffffffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0x3.ffffffffffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0x3.ffffffffffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x3.ffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x3.ffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x3.fffffffffffffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x3.fffffffffffffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x3.fffffcp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x3.fffffcp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x3.fffffcp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x3.fffffcp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x3.fffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x3.fffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x4p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x4p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x4p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x4p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x4p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x4p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0x3.ffffffffffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0x3.ffffffffffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0x3.ffffffffffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0x3.ffffffffffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x3.fffffffffffffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x3.fffffffffffffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x3.fffffcp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x3.fffffcp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x3.fffffcp+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x3.fffffcp+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x3.fffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x3.fffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x3.fffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x3.fffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x3.fffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x4p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x4p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x4p+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x4p+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x4p+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x4p+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x4p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x4p+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x4p+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0x3.ffffffffffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0x3.ffffffffffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0x3.ffffffffffffep+112 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0x3.ffffffffffffep+112 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x3.ffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x3.ffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x3.ffffffffffffep+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x3.ffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x3.fffffffffffffffcp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x3.fffffffffffffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x3.fffffffffffffffcp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x3.fffffffffffffffcp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x3.fffffffffffffffffffffffffffep+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x3.fffffffffffffffffffffffffffep+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0x3.ffffffffffffffffffffffffffp+112L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0x3.ffffffffffffffffffffffffffp+112L : plus_infty : inexact-ok overflow errno-erange
+pow -min -max
+= pow downward flt-32 -0x4p-128f -0xf.fffffp+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f -0xf.fffffp+124f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 -0x4p-128f -0xf.fffffp+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 -0x4p-128f -0xf.fffffp+124f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-128 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 -0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-128 -0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-128L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-128L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x4p-1024 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 -0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x4p-1024 -0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-1024L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-1024L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x4p-16384L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x4p-16384L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x4p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x2p-16384L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x2p-16384L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x2p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 -0x8p-972 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 -0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 -0x8p-972 -0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel -0x8p-972L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k -0x8p-972L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 -0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 -0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm -0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange
+pow -min 0xffffff
+= pow downward flt-32 -0x4p-128f 0xf.fffffp+20f : -0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow tonearest flt-32 -0x4p-128f 0xf.fffffp+20f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0xf.fffffp+20f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0xf.fffffp+20f : -0x0p+0f : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0x4p-128 0xf.fffffp+20 : -0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L 0xf.fffffp+20L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L 0xf.fffffp+20L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x4p-128L 0xf.fffffp+20L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L 0xf.fffffp+20L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0x4p-1024 0xf.fffffp+20 : -0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L 0xf.fffffp+20L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L 0xf.fffffp+20L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L 0xf.fffffp+20L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L 0xf.fffffp+20L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L 0xf.fffffp+20L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L 0xf.fffffp+20L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L 0xf.fffffp+20L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L 0xf.fffffp+20L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L 0xf.fffffp+20L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L 0xf.fffffp+20L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0x8p-972 0xf.fffffp+20 : -0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0xf.fffffp+20 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L 0xf.fffffp+20L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L 0xf.fffffp+20L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x8p-972L 0xf.fffffp+20L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L 0xf.fffffp+20L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0xf.fffffp+20L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -min 0x1fffffe
+= pow downward flt-32 -0x4p-128f 0x1.fffffep+24f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0x1.fffffep+24f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x1.fffffep+24f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x1.fffffep+24f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x1.fffffep+24 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x1.fffffep+24L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x1.fffffep+24L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x1.fffffep+24L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x1.fffffep+24L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x1.fffffep+24 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x1.fffffep+24L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x1.fffffep+24L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x1.fffffep+24L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x1.fffffep+24L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x1.fffffep+24L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x1.fffffep+24L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x1.fffffep+24L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x1.fffffep+24L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x1.fffffep+24L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x1.fffffep+24L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x1.fffffep+24 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x1.fffffep+24 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x1.fffffep+24L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x1.fffffep+24L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x1.fffffep+24L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x1.fffffep+24L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x1.fffffep+24L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -min 0x1.fffffffffffffp+52
+= pow downward flt-32 -0x4p-128f 0x2p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0x2p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x2p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x2p+52f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x2p+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x2p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x2p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x2p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x2p+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x4p-128f 0x1.fffffep+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0x1.fffffep+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x1.fffffep+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x1.fffffep+52f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x1.fffffep+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x1.fffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x1.fffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x1.fffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x1.fffffep+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x1.fffffffffffffp+52 : -0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-128 0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x4p-128L 0x1.fffffffffffffp+52L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffp+52L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x4p-128L 0x1.fffffffffffffp+52L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L 0x1.fffffffffffffp+52L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0x4p-1024 0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x2p+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x2p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x2p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x2p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x2p+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x1.fffffep+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x1.fffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x1.fffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x1.fffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x1.fffffep+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x1.fffffffffffffp+52 : -0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow tonearest dbl-64 -0x4p-1024 0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffp+52L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffp+52L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L 0x1.fffffffffffffp+52L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffp+52L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x2p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x2p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x2p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x1.fffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x1.fffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x1.fffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffp+52L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffp+52L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L 0x1.fffffffffffffp+52L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x2p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x2p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x2p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x1.fffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x1.fffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x1.fffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffp+52L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffp+52L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L 0x1.fffffffffffffp+52L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0x8p-972 0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x2p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x2p+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x2p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x2p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x2p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x2p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x2p+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x1.fffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x1.fffffep+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x1.fffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x1.fffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x1.fffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x1.fffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x1.fffffep+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x1.fffffffffffffp+52 : -0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow tonearest dbl-64 -0x8p-972 0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x1.fffffffffffffp+52 : -0x0p+0 : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x8p-972L 0x1.fffffffffffffp+52L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffp+52L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x8p-972L 0x1.fffffffffffffp+52L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L 0x1.fffffffffffffp+52L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x1.fffffffffffffp+52L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -min 0x1.fffffffffffffp+53
+= pow downward flt-32 -0x4p-128f 0x4p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0x4p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x4p+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x4p+52f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x4p+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x4p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x4p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x4p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x4p+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x4p-128f 0x3.fffffcp+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0x3.fffffcp+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x3.fffffcp+52f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x3.fffffcp+52f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x3.fffffcp+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x3.fffffcp+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x3.fffffcp+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x3.fffffcp+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x3.fffffcp+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x3.ffffffffffffep+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x3.ffffffffffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x3.ffffffffffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x3.ffffffffffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x3.ffffffffffffep+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x4p+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x4p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x4p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x4p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x4p+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x3.fffffcp+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x3.fffffcp+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x3.fffffcp+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x3.fffffcp+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x3.fffffcp+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x3.ffffffffffffep+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x3.ffffffffffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x3.ffffffffffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x3.ffffffffffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffep+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x4p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x4p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x4p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x3.fffffcp+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x3.fffffcp+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x3.fffffcp+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x3.ffffffffffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x3.ffffffffffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x3.ffffffffffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x4p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x4p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x4p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x3.fffffcp+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x3.fffffcp+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x3.fffffcp+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x3.ffffffffffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x3.ffffffffffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x3.ffffffffffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x4p+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x4p+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x4p+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x4p+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x4p+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x4p+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x4p+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x3.fffffcp+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x3.fffffcp+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x3.fffffcp+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x3.fffffcp+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x3.fffffcp+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x3.fffffcp+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x3.fffffcp+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x3.ffffffffffffep+52 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x3.ffffffffffffep+52 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x3.ffffffffffffep+52L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x3.ffffffffffffep+52L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x3.ffffffffffffep+52L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x3.ffffffffffffep+52L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x3.ffffffffffffep+52L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -min 0x1.fffffffffffffffep+63
+= pow downward flt-32 -0x4p-128f 0x1p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0x1p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x1p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x1p+64f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x1p+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x1p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x1p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x1p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x1p+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x4p-128f 0xf.fffffp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0xf.fffffp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0xf.fffffp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0xf.fffffp+60f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0xf.fffffp+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0xf.fffffp+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0xf.fffffp+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0xf.fffffp+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0xf.fffffp+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0xf.ffffffffffff8p+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0xf.ffffffffffff8p+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0xf.ffffffffffff8p+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0xf.ffffffffffff8p+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0xf.ffffffffffff8p+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0xf.fffffffffffffffp+60L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-128L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-128L 0xf.fffffffffffffffp+60L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-128L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x4p-128L 0xf.fffffffffffffffp+60L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L 0xf.fffffffffffffffp+60L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0x4p-1024 0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x1p+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x1p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x1p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x1p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x1p+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0xf.fffffp+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0xf.fffffp+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0xf.fffffp+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0xf.fffffp+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0xf.fffffp+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0xf.ffffffffffff8p+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0xf.ffffffffffff8p+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0xf.ffffffffffff8p+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0xf.ffffffffffff8p+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0xf.ffffffffffff8p+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0xf.fffffffffffffffp+60L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-1024L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-1024L 0xf.fffffffffffffffp+60L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L 0xf.fffffffffffffffp+60L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L 0xf.fffffffffffffffp+60L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x1p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x1p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x1p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0xf.fffffp+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0xf.fffffp+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0xf.fffffp+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0xf.ffffffffffff8p+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0xf.ffffffffffff8p+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0xf.ffffffffffff8p+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0xf.fffffffffffffffp+60L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x4p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x4p-16384L 0xf.fffffffffffffffp+60L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L 0xf.fffffffffffffffp+60L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x1p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x1p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x1p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0xf.fffffp+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0xf.fffffp+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0xf.fffffp+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0xf.ffffffffffff8p+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0xf.ffffffffffff8p+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0xf.ffffffffffff8p+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0xf.fffffffffffffffp+60L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x2p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x2p-16384L 0xf.fffffffffffffffp+60L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L 0xf.fffffffffffffffp+60L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0x8p-972 0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x1p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x1p+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x1p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x1p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x1p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x1p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x1p+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0xf.fffffp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0xf.fffffp+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0xf.fffffp+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0xf.fffffp+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0xf.fffffp+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0xf.fffffp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0xf.fffffp+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0xf.ffffffffffff8p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0xf.ffffffffffff8p+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0xf.ffffffffffff8p+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0xf.ffffffffffff8p+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0xf.ffffffffffff8p+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0xf.ffffffffffff8p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0xf.ffffffffffff8p+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0xf.fffffffffffffffp+60L : -0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-intel -0x8p-972L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-m68k -0x8p-972L 0xf.fffffffffffffffp+60L : -0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-96-m68k -0x8p-972L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x8p-972L 0xf.fffffffffffffffp+60L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L 0xf.fffffffffffffffp+60L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0xf.fffffffffffffffp+60L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -min 0x1.fffffffffffffffep+64
+= pow downward flt-32 -0x4p-128f 0x2p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0x2p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x2p+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x2p+64f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x2p+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x2p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x2p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x2p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x2p+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x4p-128f 0x1.fffffep+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0x1.fffffep+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x1.fffffep+64f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x1.fffffep+64f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x1.fffffep+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x1.fffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x1.fffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x1.fffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x1.fffffep+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x1.fffffffffffffp+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x1.fffffffffffffp+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffp+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x1.fffffffffffffp+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x1.fffffffffffffp+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x1.fffffffffffffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x1.fffffffffffffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x1.fffffffffffffffep+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x2p+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x2p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x2p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x2p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x2p+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x1.fffffep+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x1.fffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x1.fffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x1.fffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x1.fffffep+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x1.fffffffffffffp+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffp+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffp+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x1.fffffffffffffp+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffp+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x1.fffffffffffffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffffep+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x2p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x2p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x2p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x1.fffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x1.fffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x1.fffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffp+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffp+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x1.fffffffffffffp+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x1.fffffffffffffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x2p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x2p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x2p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x1.fffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x1.fffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x1.fffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffp+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffp+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x1.fffffffffffffp+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x1.fffffffffffffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x2p+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x2p+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x2p+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x2p+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x2p+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x2p+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x2p+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x1.fffffep+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x1.fffffep+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x1.fffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x1.fffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x1.fffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x1.fffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x1.fffffep+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x1.fffffffffffffp+64 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x1.fffffffffffffp+64 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x1.fffffffffffffp+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffp+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x1.fffffffffffffp+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x1.fffffffffffffp+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x1.fffffffffffffp+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x1.fffffffffffffffep+64L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffffep+64L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x1.fffffffffffffffep+64L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x1.fffffffffffffffep+64L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x1.fffffffffffffffep+64L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -min 0x1.ffffffffffffffffffffffffff8p+105
+= pow downward flt-32 -0x4p-128f 0x4p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0x4p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x4p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x4p+104f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x4p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x4p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x4p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x4p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x4p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x4p-128f 0x3.fffffcp+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0x3.fffffcp+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x3.fffffcp+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x3.fffffcp+104f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x3.fffffcp+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x3.fffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x3.fffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x3.fffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x3.fffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x3.ffffffffffffep+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x3.ffffffffffffep+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x3.ffffffffffffep+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x3.ffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x3.ffffffffffffep+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x3.fffffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x3.fffffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x3.fffffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x3.fffffffffffffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x3.ffffffffffffffffffffffffffp+104L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x4p-128L 0x3.ffffffffffffffffffffffffffp+104L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-128L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0x4p-1024 0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x4p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x4p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x4p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x4p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x4p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x3.fffffcp+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x3.fffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x3.fffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x3.fffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x3.fffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x3.ffffffffffffep+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x3.ffffffffffffep+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x3.ffffffffffffep+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x3.ffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffep+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x3.fffffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x3.fffffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x3.fffffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x3.fffffffffffffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x3.ffffffffffffffffffffffffffp+104L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffffffffffffffffp+104L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x4p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x4p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x4p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x4p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x3.fffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x3.fffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x3.fffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x3.ffffffffffffep+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x3.ffffffffffffep+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x3.ffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x3.fffffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x3.fffffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x3.fffffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x3.ffffffffffffffffffffffffffp+104L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-96-intel -0x2p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x4p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x4p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x4p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x3.fffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x3.fffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x3.fffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x3.ffffffffffffep+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x3.ffffffffffffep+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x3.ffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x3.fffffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x3.fffffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x3.fffffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x3.ffffffffffffffffffffffffffp+104L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward dbl-64 -0x8p-972 0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x4p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x4p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x4p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x4p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x4p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x4p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x4p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x3.fffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x3.fffffcp+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x3.fffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x3.fffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x3.fffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x3.fffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x3.fffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x3.ffffffffffffep+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x3.ffffffffffffep+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x3.ffffffffffffep+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x3.ffffffffffffep+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x3.ffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x3.ffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x3.ffffffffffffep+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x3.fffffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x3.fffffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x3.fffffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x3.fffffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x3.fffffffffffffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x3.ffffffffffffffffffffffffffp+104L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128ibm -0x8p-972L 0x3.ffffffffffffffffffffffffffp+104L : -0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128ibm -0x8p-972L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x3.ffffffffffffffffffffffffffp+104L : -0x0p+0L : inexact-ok underflow errno-erange
+pow -min 0x1.ffffffffffffffffffffffffff8p+106
+= pow downward flt-32 -0x4p-128f 0x8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0x8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x8p+104f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x8p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x4p-128f 0x7.fffff8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0x7.fffff8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x7.fffff8p+104f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x7.fffff8p+104f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x7.fffff8p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x7.fffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x7.fffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x7.fffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x7.fffff8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x7.ffffffffffffcp+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x7.ffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x7.ffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x7.ffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x7.ffffffffffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x7.fffffffffffffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x7.fffffffffffffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x7.fffffffffffffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x7.fffffffffffffff8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x7.fffffffffffffffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x7.fffffffffffffffffffffffffep+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x8p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x7.fffff8p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x7.fffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x7.fffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x7.fffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x7.fffff8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x7.ffffffffffffcp+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x7.ffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x7.ffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x7.ffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x7.ffffffffffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x7.fffffffffffffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x7.fffffffffffffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x7.fffffffffffffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x7.fffffffffffffff8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x7.fffffffffffffffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x7.fffffffffffffffffffffffffep+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x7.fffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x7.fffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x7.fffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x7.ffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x7.ffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x7.ffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x7.fffffffffffffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x7.fffffffffffffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x7.fffffffffffffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x7.fffffffffffffffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x7.fffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x7.fffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x7.fffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x7.ffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x7.ffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x7.ffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x7.fffffffffffffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x7.fffffffffffffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x7.fffffffffffffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x7.fffffffffffffffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x8p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x7.fffff8p+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x7.fffff8p+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x7.fffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x7.fffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x7.fffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x7.fffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x7.fffff8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x7.ffffffffffffcp+104 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x7.ffffffffffffcp+104 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x7.ffffffffffffcp+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x7.ffffffffffffcp+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x7.ffffffffffffcp+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x7.ffffffffffffcp+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x7.ffffffffffffcp+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x7.fffffffffffffff8p+104L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x7.fffffffffffffff8p+104L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x7.fffffffffffffff8p+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x7.fffffffffffffff8p+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x7.fffffffffffffff8p+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x7.fffffffffffffffffffffffffep+104L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x7.fffffffffffffffffffffffffep+104L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x7.fffffffffffffffffffffffffep+104L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -min 0x1.ffffffffffffffffffffffffffffp+112
+= pow downward flt-32 -0x4p-128f 0x2p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0x2p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x2p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x2p+112f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x2p+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x2p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x2p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x2p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x2p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x4p-128f 0x1.fffffep+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0x1.fffffep+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x1.fffffep+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x1.fffffep+112f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x1.fffffep+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x1.fffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x1.fffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x1.fffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x1.fffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x1.fffffffffffffp+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x1.fffffffffffffp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x1.fffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x1.fffffffffffffp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x1.fffffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x1.fffffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x1.fffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x1.fffffffffffffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x1.ffffffffffffffffffffffffffffp+112L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-128L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x4p-128L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x2p+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x2p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x2p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x2p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x2p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x1.fffffep+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x1.fffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x1.fffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x1.fffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x1.fffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x1.fffffffffffffp+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x1.fffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x1.fffffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x1.fffffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x1.fffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x1.fffffffffffffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x1.ffffffffffffffffffffffffffffp+112L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-1024L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x4p-1024L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x2p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x2p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x2p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x1.fffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x1.fffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x1.fffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x1.fffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x1.fffffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x1.fffffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x1.fffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x1.ffffffffffffffffffffffffffffp+112L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x4p-16384L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x4p-16384L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x2p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x2p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x2p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x1.fffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x1.fffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x1.fffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x1.fffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x1.fffffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x1.fffffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x1.fffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x1.ffffffffffffffffffffffffffffp+112L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x2p-16384L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x2p-16384L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x2p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x2p+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x2p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x2p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x2p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x2p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x2p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x1.fffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x1.fffffep+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x1.fffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x1.fffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x1.fffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x1.fffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x1.fffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x1.fffffffffffffp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x1.fffffffffffffp+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x1.fffffffffffffp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x1.fffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x1.fffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x1.fffffffffffffp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x1.fffffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x1.fffffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x1.fffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x1.fffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x1.fffffffffffffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x1.ffffffffffffffffffffffffffffp+112L : -0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow tonearest ldbl-128 -0x8p-972L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x1.ffffffffffffffffffffffffffffp+112L : -0x0p+0L : inexact-ok underflow errno-erange
+= pow downward ldbl-128 -0x8p-972L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x1.ffffffffffffffffffffffffff8p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x1.ffffffffffffffffffffffffff8p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -min 0x1.ffffffffffffffffffffffffffffp+113
+= pow downward flt-32 -0x4p-128f 0x4p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0x4p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x4p+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x4p+112f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x4p+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x4p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x4p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x4p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x4p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 -0x4p-128f 0x3.fffffcp+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0x3.fffffcp+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0x3.fffffcp+112f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0x3.fffffcp+112f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x3.fffffcp+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x3.fffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x3.fffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x3.fffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x3.fffffcp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0x3.ffffffffffffep+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x3.ffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x3.ffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x3.ffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x3.ffffffffffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0x3.fffffffffffffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0x3.fffffffffffffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x3.fffffffffffffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x3.fffffffffffffffcp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x3.fffffffffffffffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0x3.ffffffffffffffffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0x3.ffffffffffffffffffffffffffp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x4p+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x4p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x4p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x4p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x4p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x3.fffffcp+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x3.fffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x3.fffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x3.fffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x3.fffffcp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0x3.ffffffffffffep+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x3.ffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x3.ffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x3.ffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0x3.fffffffffffffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0x3.fffffffffffffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x3.fffffffffffffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x3.fffffffffffffffcp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x3.fffffffffffffffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0x3.ffffffffffffffffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0x3.ffffffffffffffffffffffffffp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x4p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x4p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x4p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x3.fffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x3.fffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x3.fffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x3.ffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x3.ffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x3.ffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0x3.fffffffffffffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0x3.fffffffffffffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x3.fffffffffffffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x3.fffffffffffffffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0x3.ffffffffffffffffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x4p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x4p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x4p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x3.fffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x3.fffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x3.fffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x3.ffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x3.ffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x3.ffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0x3.fffffffffffffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0x3.fffffffffffffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x3.fffffffffffffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x3.fffffffffffffffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0x3.ffffffffffffffffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x4p+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x4p+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x4p+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x4p+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x4p+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x4p+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x4p+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x3.fffffcp+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x3.fffffcp+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x3.fffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x3.fffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x3.fffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x3.fffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x3.fffffcp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0x3.ffffffffffffep+112 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0x3.ffffffffffffep+112 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x3.ffffffffffffep+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x3.ffffffffffffep+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x3.ffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x3.ffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x3.ffffffffffffep+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0x3.fffffffffffffffcp+112L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0x3.fffffffffffffffcp+112L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x3.fffffffffffffffcp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x3.fffffffffffffffcp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x3.fffffffffffffffcp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x3.fffffffffffffffffffffffffffep+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x3.fffffffffffffffffffffffffffep+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0x3.ffffffffffffffffffffffffffp+112L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0x3.ffffffffffffffffffffffffffp+112L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0x3.ffffffffffffffffffffffffffp+112L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow -min max
+= pow downward flt-32 -0x4p-128f 0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 -0x4p-128f 0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 -0x4p-128f 0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 -0x4p-128f 0xf.fffffp+124f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0xf.fffffp+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0xf.fffffp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0xf.fffffp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0xf.fffffp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-128 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-128 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-128 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-128 0xf.ffffffffffff8p+1020 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0xf.ffffffffffff8p+1020L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0xf.ffffffffffff8p+1020L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0xf.ffffffffffff8p+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-128L 0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-128L 0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0xf.fffffp+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0xf.fffffp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0xf.fffffp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0xf.fffffp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x4p-1024 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x4p-1024 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x4p-1024 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x4p-1024 0xf.ffffffffffff8p+1020 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0xf.fffffp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0xf.fffffp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x4p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x4p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x4p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x4p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0xf.fffffp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0xf.fffffp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x2p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x2p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x2p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x2p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0xf.fffffp+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0xf.fffffp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0xf.fffffp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0xf.fffffp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 -0x8p-972 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 -0x8p-972 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 -0x8p-972 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 -0x8p-972 0xf.ffffffffffff8p+1020 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0xf.ffffffffffff8p+1020L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0xf.ffffffffffff8p+1020L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0xf.ffffffffffff8p+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel -0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel -0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel -0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel -0x8p-972L 0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k -0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k -0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k -0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k -0x8p-972L 0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 -0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 -0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 -0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 -0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm -0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm -0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm -0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm -0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow 0x0.ffffffp0 10
+= pow downward flt-32 0xf.fffffp-4f 0xap+0f : 0xf.ffff6p-4f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp-4f 0xap+0f : 0xf.ffff6p-4f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp-4f 0xap+0f : 0xf.ffff6p-4f : inexact-ok
+= pow upward flt-32 0xf.fffffp-4f 0xap+0f : 0xf.ffff7p-4f : inexact-ok
+= pow downward dbl-64 0xf.fffffp-4 0xap+0 : 0xf.ffff600002cf8p-4 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp-4 0xap+0 : 0xf.ffff600002dp-4 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp-4 0xap+0 : 0xf.ffff600002cf8p-4 : inexact-ok
+= pow upward dbl-64 0xf.fffffp-4 0xap+0 : 0xf.ffff600002dp-4 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0xap+0L : 0xf.ffff600002cffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0xap+0L : 0xf.ffff600002dp-4L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0xap+0L : 0xf.ffff600002cffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0xap+0L : 0xf.ffff600002dp-4L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0xap+0L : 0xf.ffff600002cffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0xap+0L : 0xf.ffff600002dp-4L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0xap+0L : 0xf.ffff600002cffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0xap+0L : 0xf.ffff600002dp-4L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0xap+0L : 0xf.ffff600002cffff880000d1ffffp-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L 0xap+0L : 0xf.ffff600002cffff880000d1ffffp-4L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp-4L 0xap+0L : 0xf.ffff600002cffff880000d1ffffp-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp-4L 0xap+0L : 0xf.ffff600002cffff880000d1ffff8p-4L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0xap+0L : 0xf.ffff600002cffff880000d1ffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0xap+0L : 0xf.ffff600002cffff880000d2p-4L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0xap+0L : 0xf.ffff600002cffff880000d1ffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0xap+0L : 0xf.ffff600002cffff880000d2p-4L : inexact-ok
+pow 0x0.ffffffp0 100
+= pow downward flt-32 0xf.fffffp-4f 0x6.4p+4f : 0xf.fff9cp-4f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp-4f 0x6.4p+4f : 0xf.fff9cp-4f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp-4f 0x6.4p+4f : 0xf.fff9cp-4f : inexact-ok
+= pow upward flt-32 0xf.fffffp-4f 0x6.4p+4f : 0xf.fff9dp-4f : inexact-ok
+= pow downward dbl-64 0xf.fffffp-4 0x6.4p+4 : 0xf.fff9c001355f8p-4 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp-4 0x6.4p+4 : 0xf.fff9c001356p-4 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp-4 0x6.4p+4 : 0xf.fff9c001355f8p-4 : inexact-ok
+= pow upward dbl-64 0xf.fffffp-4 0x6.4p+4 : 0xf.fff9c001356p-4 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x6.4p+4L : 0xf.fff9c001355fd88p-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x6.4p+4L : 0xf.fff9c001355fd88p-4L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x6.4p+4L : 0xf.fff9c001355fd88p-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x6.4p+4L : 0xf.fff9c001355fd89p-4L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x6.4p+4L : 0xf.fff9c001355fd88p-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x6.4p+4L : 0xf.fff9c001355fd88p-4L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x6.4p+4L : 0xf.fff9c001355fd88p-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x6.4p+4L : 0xf.fff9c001355fd89p-4L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x6.4p+4L : 0xf.fff9c001355fd885c3bd5448334p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x6.4p+4L : 0xf.fff9c001355fd885c3bd54483348p-4L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x6.4p+4L : 0xf.fff9c001355fd885c3bd5448334p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp-4L 0x6.4p+4L : 0xf.fff9c001355fd885c3bd54483348p-4L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x6.4p+4L : 0xf.fff9c001355fd885c3bd54483p-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x6.4p+4L : 0xf.fff9c001355fd885c3bd544834p-4L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x6.4p+4L : 0xf.fff9c001355fd885c3bd54483p-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x6.4p+4L : 0xf.fff9c001355fd885c3bd544834p-4L : inexact-ok
+pow 0x0.ffffffp0 1000
+= pow downward flt-32 0xf.fffffp-4f 0x3.e8p+8f : 0xf.ffc18p-4f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp-4f 0x3.e8p+8f : 0xf.ffc18p-4f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp-4f 0x3.e8p+8f : 0xf.ffc18p-4f : inexact-ok
+= pow upward flt-32 0xf.fffffp-4f 0x3.e8p+8f : 0xf.ffc19p-4f : inexact-ok
+= pow downward dbl-64 0xf.fffffp-4 0x3.e8p+8 : 0xf.ffc18079f2218p-4 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp-4 0x3.e8p+8 : 0xf.ffc18079f2218p-4 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp-4 0x3.e8p+8 : 0xf.ffc18079f2218p-4 : inexact-ok
+= pow upward dbl-64 0xf.fffffp-4 0x3.e8p+8 : 0xf.ffc18079f222p-4 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x3.e8p+8L : 0xf.ffc18079f221887p-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x3.e8p+8L : 0xf.ffc18079f221888p-4L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x3.e8p+8L : 0xf.ffc18079f221887p-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x3.e8p+8L : 0xf.ffc18079f221888p-4L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x3.e8p+8L : 0xf.ffc18079f221887p-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x3.e8p+8L : 0xf.ffc18079f221888p-4L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x3.e8p+8L : 0xf.ffc18079f221887p-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x3.e8p+8L : 0xf.ffc18079f221888p-4L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x3.e8p+8L : 0xf.ffc18079f221887cc9faaa72e718p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x3.e8p+8L : 0xf.ffc18079f221887cc9faaa72e72p-4L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x3.e8p+8L : 0xf.ffc18079f221887cc9faaa72e718p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp-4L 0x3.e8p+8L : 0xf.ffc18079f221887cc9faaa72e72p-4L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x3.e8p+8L : 0xf.ffc18079f221887cc9faaa72e4p-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x3.e8p+8L : 0xf.ffc18079f221887cc9faaa72e8p-4L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x3.e8p+8L : 0xf.ffc18079f221887cc9faaa72e4p-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x3.e8p+8L : 0xf.ffc18079f221887cc9faaa72e8p-4L : inexact-ok
+pow 0x0.ffffffp0 0x1p24
+= pow downward flt-32 0xf.fffffp-4f 0x1p+24f : 0x5.e2d588p-4f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp-4f 0x1p+24f : 0x5.e2d588p-4f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp-4f 0x1p+24f : 0x5.e2d588p-4f : inexact-ok
+= pow upward flt-32 0xf.fffffp-4f 0x1p+24f : 0x5.e2d59p-4f : inexact-ok
+= pow downward dbl-64 0xf.fffffp-4 0x1p+24 : 0x5.e2d58a99d105cp-4 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp-4 0x1p+24 : 0x5.e2d58a99d106p-4 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp-4 0x1p+24 : 0x5.e2d58a99d105cp-4 : inexact-ok
+= pow upward dbl-64 0xf.fffffp-4 0x1p+24 : 0x5.e2d58a99d106p-4 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x1p+24L : 0x5.e2d58a99d105f22p-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x1p+24L : 0x5.e2d58a99d105f22p-4L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x1p+24L : 0x5.e2d58a99d105f22p-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x1p+24L : 0x5.e2d58a99d105f228p-4L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x1p+24L : 0x5.e2d58a99d105f22p-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x1p+24L : 0x5.e2d58a99d105f22p-4L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x1p+24L : 0x5.e2d58a99d105f22p-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x1p+24L : 0x5.e2d58a99d105f228p-4L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x1p+24L : 0x5.e2d58a99d105f22148d9aa4810b8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x1p+24L : 0x5.e2d58a99d105f22148d9aa4810bcp-4L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x1p+24L : 0x5.e2d58a99d105f22148d9aa4810b8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp-4L 0x1p+24L : 0x5.e2d58a99d105f22148d9aa4810bcp-4L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x1p+24L : 0x5.e2d58a99d105f22148d9aa481p-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x1p+24L : 0x5.e2d58a99d105f22148d9aa481p-4L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x1p+24L : 0x5.e2d58a99d105f22148d9aa481p-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x1p+24L : 0x5.e2d58a99d105f22148d9aa4812p-4L : inexact-ok
+pow 0x0.ffffffp0 0x1p30
+= pow downward flt-32 0xf.fffffp-4f 0x4p+28f : 0xc.b4e8ap-96f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp-4f 0x4p+28f : 0xc.b4e8ap-96f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp-4f 0x4p+28f : 0xc.b4e8ap-96f : inexact-ok
+= pow upward flt-32 0xf.fffffp-4f 0x4p+28f : 0xc.b4e8bp-96f : inexact-ok
+= pow downward dbl-64 0xf.fffffp-4 0x4p+28 : 0xc.b4e8a2f3c38ep-96 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp-4 0x4p+28 : 0xc.b4e8a2f3c38e8p-96 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp-4 0x4p+28 : 0xc.b4e8a2f3c38ep-96 : inexact-ok
+= pow upward dbl-64 0xf.fffffp-4 0x4p+28 : 0xc.b4e8a2f3c38e8p-96 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x4p+28L : 0xc.b4e8a2f3c38e77ap-96L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x4p+28L : 0xc.b4e8a2f3c38e77bp-96L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x4p+28L : 0xc.b4e8a2f3c38e77ap-96L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x4p+28L : 0xc.b4e8a2f3c38e77bp-96L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x4p+28L : 0xc.b4e8a2f3c38e77ap-96L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x4p+28L : 0xc.b4e8a2f3c38e77bp-96L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x4p+28L : 0xc.b4e8a2f3c38e77ap-96L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x4p+28L : 0xc.b4e8a2f3c38e77bp-96L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x4p+28L : 0xc.b4e8a2f3c38e77ad07f54c04c79p-96L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x4p+28L : 0xc.b4e8a2f3c38e77ad07f54c04c79p-96L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x4p+28L : 0xc.b4e8a2f3c38e77ad07f54c04c79p-96L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp-4L 0x4p+28L : 0xc.b4e8a2f3c38e77ad07f54c04c798p-96L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x4p+28L : 0xc.b4e8a2f3c38e77ad07f54c04c4p-96L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x4p+28L : 0xc.b4e8a2f3c38e77ad07f54c04c8p-96L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x4p+28L : 0xc.b4e8a2f3c38e77ad07f54c04c4p-96L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x4p+28L : 0xc.b4e8a2f3c38e77ad07f54c04c8p-96L : inexact-ok
+pow 0x0.ffffffp0 0x1.234566p30
+= pow downward flt-32 0xf.fffffp-4f 0x4.8d1598p+28f : 0x7.b4fa18p-108f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp-4f 0x4.8d1598p+28f : 0x7.b4fa2p-108f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp-4f 0x4.8d1598p+28f : 0x7.b4fa18p-108f : inexact-ok
+= pow upward flt-32 0xf.fffffp-4f 0x4.8d1598p+28f : 0x7.b4fa2p-108f : inexact-ok
+= pow downward dbl-64 0xf.fffffp-4 0x4.8d1598p+28 : 0x7.b4fa1e8fc264cp-108 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp-4 0x4.8d1598p+28 : 0x7.b4fa1e8fc265p-108 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp-4 0x4.8d1598p+28 : 0x7.b4fa1e8fc264cp-108 : inexact-ok
+= pow upward dbl-64 0xf.fffffp-4 0x4.8d1598p+28 : 0x7.b4fa1e8fc265p-108 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x4.8d1598p+28L : 0x7.b4fa1e8fc264e5bp-108L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x4.8d1598p+28L : 0x7.b4fa1e8fc264e5b8p-108L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x4.8d1598p+28L : 0x7.b4fa1e8fc264e5bp-108L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x4.8d1598p+28L : 0x7.b4fa1e8fc264e5b8p-108L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d1598p+28L : 0x7.b4fa1e8fc264e5bp-108L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x4.8d1598p+28L : 0x7.b4fa1e8fc264e5b8p-108L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x4.8d1598p+28L : 0x7.b4fa1e8fc264e5bp-108L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d1598p+28L : 0x7.b4fa1e8fc264e5b8p-108L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x4.8d1598p+28L : 0x7.b4fa1e8fc264e5b778223ea4719cp-108L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x4.8d1598p+28L : 0x7.b4fa1e8fc264e5b778223ea471ap-108L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x4.8d1598p+28L : 0x7.b4fa1e8fc264e5b778223ea4719cp-108L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp-4L 0x4.8d1598p+28L : 0x7.b4fa1e8fc264e5b778223ea471ap-108L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x4.8d1598p+28L : 0x7.b4fa1e8fc264e5b778223ea47p-108L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x4.8d1598p+28L : 0x7.b4fa1e8fc264e5b778223ea472p-108L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x4.8d1598p+28L : 0x7.b4fa1e8fc264e5b778223ea47p-108L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x4.8d1598p+28L : 0x7.b4fa1e8fc264e5b778223ea472p-108L : inexact-ok
+pow 0x0.ffffffp0 -10
+= pow downward flt-32 0xf.fffffp-4f -0xap+0f : 0x1.00000ap+0f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp-4f -0xap+0f : 0x1.00000ap+0f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp-4f -0xap+0f : 0x1.00000ap+0f : inexact-ok
+= pow upward flt-32 0xf.fffffp-4f -0xap+0f : 0x1.00000cp+0f : inexact-ok
+= pow downward dbl-64 0xf.fffffp-4 -0xap+0 : 0x1.00000a000037p+0 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp-4 -0xap+0 : 0x1.00000a000037p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp-4 -0xap+0 : 0x1.00000a000037p+0 : inexact-ok
+= pow upward dbl-64 0xf.fffffp-4 -0xap+0 : 0x1.00000a0000371p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0xap+0L : 0x1.00000a000037p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0xap+0L : 0x1.00000a000037p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0xap+0L : 0x1.00000a000037p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0xap+0L : 0x1.00000a0000370002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0xap+0L : 0x1.00000a000037p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0xap+0L : 0x1.00000a000037p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0xap+0L : 0x1.00000a000037p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0xap+0L : 0x1.00000a0000370002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp-4L -0xap+0L : 0x1.00000a0000370000dc0002cb0007p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0xap+0L : 0x1.00000a0000370000dc0002cb0008p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp-4L -0xap+0L : 0x1.00000a0000370000dc0002cb0007p+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0xap+0L : 0x1.00000a0000370000dc0002cb0008p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0xap+0L : 0x1.00000a0000370000dc0002cbp+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0xap+0L : 0x1.00000a0000370000dc0002cbp+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0xap+0L : 0x1.00000a0000370000dc0002cbp+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0xap+0L : 0x1.00000a0000370000dc0002cb008p+0L : inexact-ok
+pow 0x0.ffffffp0 -100
+= pow downward flt-32 0xf.fffffp-4f -0x6.4p+4f : 0x1.000064p+0f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp-4f -0x6.4p+4f : 0x1.000064p+0f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp-4f -0x6.4p+4f : 0x1.000064p+0f : inexact-ok
+= pow upward flt-32 0xf.fffffp-4f -0x6.4p+4f : 0x1.000066p+0f : inexact-ok
+= pow downward dbl-64 0xf.fffffp-4 -0x6.4p+4 : 0x1.0000640013bap+0 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp-4 -0x6.4p+4 : 0x1.0000640013bap+0 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp-4 -0x6.4p+4 : 0x1.0000640013bap+0 : inexact-ok
+= pow upward dbl-64 0xf.fffffp-4 -0x6.4p+4 : 0x1.0000640013ba1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x6.4p+4L : 0x1.0000640013ba029ep+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x6.4p+4L : 0x1.0000640013ba029ep+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x6.4p+4L : 0x1.0000640013ba029ep+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x6.4p+4L : 0x1.0000640013ba02ap+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x6.4p+4L : 0x1.0000640013ba029ep+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x6.4p+4L : 0x1.0000640013ba029ep+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x6.4p+4L : 0x1.0000640013ba029ep+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x6.4p+4L : 0x1.0000640013ba02ap+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp-4L -0x6.4p+4L : 0x1.0000640013ba029eb44376a07b3cp+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x6.4p+4L : 0x1.0000640013ba029eb44376a07b3dp+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x6.4p+4L : 0x1.0000640013ba029eb44376a07b3cp+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x6.4p+4L : 0x1.0000640013ba029eb44376a07b3dp+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x6.4p+4L : 0x1.0000640013ba029eb44376a07bp+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x6.4p+4L : 0x1.0000640013ba029eb44376a07bp+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x6.4p+4L : 0x1.0000640013ba029eb44376a07bp+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x6.4p+4L : 0x1.0000640013ba029eb44376a07b8p+0L : inexact-ok
+pow 0x0.ffffffp0 -1000
+= pow downward flt-32 0xf.fffffp-4f -0x3.e8p+8f : 0x1.0003e8p+0f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp-4f -0x3.e8p+8f : 0x1.0003e8p+0f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp-4f -0x3.e8p+8f : 0x1.0003e8p+0f : inexact-ok
+= pow upward flt-32 0xf.fffffp-4f -0x3.e8p+8f : 0x1.0003eap+0f : inexact-ok
+= pow downward dbl-64 0xf.fffffp-4 -0x3.e8p+8 : 0x1.0003e807a31dfp+0 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp-4 -0x3.e8p+8 : 0x1.0003e807a31dfp+0 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp-4 -0x3.e8p+8 : 0x1.0003e807a31dfp+0 : inexact-ok
+= pow upward dbl-64 0xf.fffffp-4 -0x3.e8p+8 : 0x1.0003e807a31ep+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x3.e8p+8L : 0x1.0003e807a31df6ccp+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x3.e8p+8L : 0x1.0003e807a31df6cep+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x3.e8p+8L : 0x1.0003e807a31df6ccp+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x3.e8p+8L : 0x1.0003e807a31df6cep+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x3.e8p+8L : 0x1.0003e807a31df6ccp+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x3.e8p+8L : 0x1.0003e807a31df6cep+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x3.e8p+8L : 0x1.0003e807a31df6ccp+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x3.e8p+8L : 0x1.0003e807a31df6cep+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp-4L -0x3.e8p+8L : 0x1.0003e807a31df6cdda7c3a40d85ep+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x3.e8p+8L : 0x1.0003e807a31df6cdda7c3a40d85fp+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x3.e8p+8L : 0x1.0003e807a31df6cdda7c3a40d85ep+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x3.e8p+8L : 0x1.0003e807a31df6cdda7c3a40d85fp+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x3.e8p+8L : 0x1.0003e807a31df6cdda7c3a40d8p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x3.e8p+8L : 0x1.0003e807a31df6cdda7c3a40d88p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x3.e8p+8L : 0x1.0003e807a31df6cdda7c3a40d8p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x3.e8p+8L : 0x1.0003e807a31df6cdda7c3a40d88p+0L : inexact-ok
+pow 0x0.ffffffp0 -0x1p24
+= pow downward flt-32 0xf.fffffp-4f -0x1p+24f : 0x2.b7e15p+0f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp-4f -0x1p+24f : 0x2.b7e154p+0f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp-4f -0x1p+24f : 0x2.b7e15p+0f : inexact-ok
+= pow upward flt-32 0xf.fffffp-4f -0x1p+24f : 0x2.b7e154p+0f : inexact-ok
+= pow downward dbl-64 0xf.fffffp-4 -0x1p+24 : 0x2.b7e152be7b97p+0 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp-4 -0x1p+24 : 0x2.b7e152be7b972p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp-4 -0x1p+24 : 0x2.b7e152be7b97p+0 : inexact-ok
+= pow upward dbl-64 0xf.fffffp-4 -0x1p+24 : 0x2.b7e152be7b972p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x1p+24L : 0x2.b7e152be7b971aap+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x1p+24L : 0x2.b7e152be7b971aa4p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x1p+24L : 0x2.b7e152be7b971aap+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x1p+24L : 0x2.b7e152be7b971aa4p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x1p+24L : 0x2.b7e152be7b971aap+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x1p+24L : 0x2.b7e152be7b971aa4p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x1p+24L : 0x2.b7e152be7b971aap+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x1p+24L : 0x2.b7e152be7b971aa4p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp-4L -0x1p+24L : 0x2.b7e152be7b971aa2272ed5772124p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x1p+24L : 0x2.b7e152be7b971aa2272ed5772126p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x1p+24L : 0x2.b7e152be7b971aa2272ed5772124p+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x1p+24L : 0x2.b7e152be7b971aa2272ed5772126p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x1p+24L : 0x2.b7e152be7b971aa2272ed57721p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x1p+24L : 0x2.b7e152be7b971aa2272ed57721p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x1p+24L : 0x2.b7e152be7b971aa2272ed57721p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x1p+24L : 0x2.b7e152be7b971aa2272ed57722p+0L : inexact-ok
+pow 0x0.ffffffp0 -0x1p30
+= pow downward flt-32 0xf.fffffp-4f -0x4p+28f : 0x1.4259aap+92f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp-4f -0x4p+28f : 0x1.4259acp+92f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp-4f -0x4p+28f : 0x1.4259aap+92f : inexact-ok
+= pow upward flt-32 0xf.fffffp-4f -0x4p+28f : 0x1.4259acp+92f : inexact-ok
+= pow downward dbl-64 0xf.fffffp-4 -0x4p+28 : 0x1.4259ab1a8c764p+92 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp-4 -0x4p+28 : 0x1.4259ab1a8c765p+92 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp-4 -0x4p+28 : 0x1.4259ab1a8c764p+92 : inexact-ok
+= pow upward dbl-64 0xf.fffffp-4 -0x4p+28 : 0x1.4259ab1a8c765p+92 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x4p+28L : 0x1.4259ab1a8c764d24p+92L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x4p+28L : 0x1.4259ab1a8c764d24p+92L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x4p+28L : 0x1.4259ab1a8c764d24p+92L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x4p+28L : 0x1.4259ab1a8c764d26p+92L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x4p+28L : 0x1.4259ab1a8c764d24p+92L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x4p+28L : 0x1.4259ab1a8c764d24p+92L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x4p+28L : 0x1.4259ab1a8c764d24p+92L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x4p+28L : 0x1.4259ab1a8c764d26p+92L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp-4L -0x4p+28L : 0x1.4259ab1a8c764d243a58c5120fa1p+92L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x4p+28L : 0x1.4259ab1a8c764d243a58c5120fa2p+92L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x4p+28L : 0x1.4259ab1a8c764d243a58c5120fa1p+92L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x4p+28L : 0x1.4259ab1a8c764d243a58c5120fa2p+92L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x4p+28L : 0x1.4259ab1a8c764d243a58c5120f8p+92L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x4p+28L : 0x1.4259ab1a8c764d243a58c5120f8p+92L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x4p+28L : 0x1.4259ab1a8c764d243a58c5120f8p+92L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x4p+28L : 0x1.4259ab1a8c764d243a58c5121p+92L : inexact-ok
+pow 0x0.ffffffp0 -0x1.234566p30
+= pow downward flt-32 0xf.fffffp-4f -0x4.8d1598p+28f : 0x2.13780cp+104f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp-4f -0x4.8d1598p+28f : 0x2.13780cp+104f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp-4f -0x4.8d1598p+28f : 0x2.13780cp+104f : inexact-ok
+= pow upward flt-32 0xf.fffffp-4f -0x4.8d1598p+28f : 0x2.13781p+104f : inexact-ok
+= pow downward dbl-64 0xf.fffffp-4 -0x4.8d1598p+28 : 0x2.13780c1d4b144p+104 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp-4 -0x4.8d1598p+28 : 0x2.13780c1d4b144p+104 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp-4 -0x4.8d1598p+28 : 0x2.13780c1d4b144p+104 : inexact-ok
+= pow upward dbl-64 0xf.fffffp-4 -0x4.8d1598p+28 : 0x2.13780c1d4b146p+104 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x4.8d1598p+28L : 0x2.13780c1d4b1441bp+104L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x4.8d1598p+28L : 0x2.13780c1d4b1441b4p+104L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x4.8d1598p+28L : 0x2.13780c1d4b1441bp+104L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x4.8d1598p+28L : 0x2.13780c1d4b1441b4p+104L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d1598p+28L : 0x2.13780c1d4b1441bp+104L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x4.8d1598p+28L : 0x2.13780c1d4b1441b4p+104L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x4.8d1598p+28L : 0x2.13780c1d4b1441bp+104L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d1598p+28L : 0x2.13780c1d4b1441b4p+104L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp-4L -0x4.8d1598p+28L : 0x2.13780c1d4b1441b2aba1fdfa1688p+104L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x4.8d1598p+28L : 0x2.13780c1d4b1441b2aba1fdfa168ap+104L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x4.8d1598p+28L : 0x2.13780c1d4b1441b2aba1fdfa1688p+104L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x4.8d1598p+28L : 0x2.13780c1d4b1441b2aba1fdfa168ap+104L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x4.8d1598p+28L : 0x2.13780c1d4b1441b2aba1fdfa16p+104L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x4.8d1598p+28L : 0x2.13780c1d4b1441b2aba1fdfa17p+104L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x4.8d1598p+28L : 0x2.13780c1d4b1441b2aba1fdfa16p+104L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x4.8d1598p+28L : 0x2.13780c1d4b1441b2aba1fdfa17p+104L : inexact-ok
+pow 0x1.000002p0 0x1p24
+= pow downward flt-32 0x1.000002p+0f 0x1p+24f : 0x7.639918p+0f : inexact-ok
+= pow tonearest flt-32 0x1.000002p+0f 0x1p+24f : 0x7.63992p+0f : inexact-ok
+= pow towardzero flt-32 0x1.000002p+0f 0x1p+24f : 0x7.639918p+0f : inexact-ok
+= pow upward flt-32 0x1.000002p+0f 0x1p+24f : 0x7.63992p+0f : inexact-ok
+= pow downward dbl-64 0x1.000002p+0 0x1p+24 : 0x7.63991f6e05318p+0 : inexact-ok
+= pow tonearest dbl-64 0x1.000002p+0 0x1p+24 : 0x7.63991f6e05318p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.000002p+0 0x1p+24 : 0x7.63991f6e05318p+0 : inexact-ok
+= pow upward dbl-64 0x1.000002p+0 0x1p+24 : 0x7.63991f6e0531cp+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.000002p+0L 0x1p+24L : 0x7.63991f6e0531841p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.000002p+0L 0x1p+24L : 0x7.63991f6e0531841p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.000002p+0L 0x1p+24L : 0x7.63991f6e0531841p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.000002p+0L 0x1p+24L : 0x7.63991f6e05318418p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.000002p+0L 0x1p+24L : 0x7.63991f6e0531841p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L 0x1p+24L : 0x7.63991f6e0531841p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L 0x1p+24L : 0x7.63991f6e0531841p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.000002p+0L 0x1p+24L : 0x7.63991f6e05318418p+0L : inexact-ok
+= pow downward ldbl-128 0x1.000002p+0L 0x1p+24L : 0x7.63991f6e0531841345850fad35f8p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x1p+24L : 0x7.63991f6e0531841345850fad35fcp+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.000002p+0L 0x1p+24L : 0x7.63991f6e0531841345850fad35f8p+0L : inexact-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x1p+24L : 0x7.63991f6e0531841345850fad35fcp+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x1p+24L : 0x7.63991f6e0531841345850fad34p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x1p+24L : 0x7.63991f6e0531841345850fad36p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x1p+24L : 0x7.63991f6e0531841345850fad34p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x1p+24L : 0x7.63991f6e0531841345850fad36p+0L : inexact-ok
+pow 0x1.000002p0 0x1.234566p29
+= pow downward flt-32 0x1.000002p+0f 0x2.468accp+28f : 0x2.137728p+104f : inexact-ok
+= pow tonearest flt-32 0x1.000002p+0f 0x2.468accp+28f : 0x2.137728p+104f : inexact-ok
+= pow towardzero flt-32 0x1.000002p+0f 0x2.468accp+28f : 0x2.137728p+104f : inexact-ok
+= pow upward flt-32 0x1.000002p+0f 0x2.468accp+28f : 0x2.13772cp+104f : inexact-ok
+= pow downward dbl-64 0x1.000002p+0 0x2.468accp+28 : 0x2.1377295ae8b6ap+104 : inexact-ok
+= pow tonearest dbl-64 0x1.000002p+0 0x2.468accp+28 : 0x2.1377295ae8b6ap+104 : inexact-ok
+= pow towardzero dbl-64 0x1.000002p+0 0x2.468accp+28 : 0x2.1377295ae8b6ap+104 : inexact-ok
+= pow upward dbl-64 0x1.000002p+0 0x2.468accp+28 : 0x2.1377295ae8b6cp+104 : inexact-ok
+= pow downward ldbl-96-intel 0x1.000002p+0L 0x2.468accp+28L : 0x2.1377295ae8b6a038p+104L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.000002p+0L 0x2.468accp+28L : 0x2.1377295ae8b6a038p+104L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.000002p+0L 0x2.468accp+28L : 0x2.1377295ae8b6a038p+104L : inexact-ok
+= pow upward ldbl-96-intel 0x1.000002p+0L 0x2.468accp+28L : 0x2.1377295ae8b6a03cp+104L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.000002p+0L 0x2.468accp+28L : 0x2.1377295ae8b6a038p+104L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L 0x2.468accp+28L : 0x2.1377295ae8b6a038p+104L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L 0x2.468accp+28L : 0x2.1377295ae8b6a038p+104L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.000002p+0L 0x2.468accp+28L : 0x2.1377295ae8b6a03cp+104L : inexact-ok
+= pow downward ldbl-128 0x1.000002p+0L 0x2.468accp+28L : 0x2.1377295ae8b6a0384e9b11247d06p+104L : inexact-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x2.468accp+28L : 0x2.1377295ae8b6a0384e9b11247d06p+104L : inexact-ok
+= pow towardzero ldbl-128 0x1.000002p+0L 0x2.468accp+28L : 0x2.1377295ae8b6a0384e9b11247d06p+104L : inexact-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x2.468accp+28L : 0x2.1377295ae8b6a0384e9b11247d08p+104L : inexact-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x2.468accp+28L : 0x2.1377295ae8b6a0384e9b11247dp+104L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x2.468accp+28L : 0x2.1377295ae8b6a0384e9b11247dp+104L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x2.468accp+28L : 0x2.1377295ae8b6a0384e9b11247dp+104L : inexact-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x2.468accp+28L : 0x2.1377295ae8b6a0384e9b11247ep+104L : inexact-ok
+pow 0x1.000002p0 -0x1.234566p29
+= pow downward flt-32 0x1.000002p+0f -0x2.468accp+28f : 0x7.b4fd68p-108f : inexact-ok
+= pow tonearest flt-32 0x1.000002p+0f -0x2.468accp+28f : 0x7.b4fd68p-108f : inexact-ok
+= pow towardzero flt-32 0x1.000002p+0f -0x2.468accp+28f : 0x7.b4fd68p-108f : inexact-ok
+= pow upward flt-32 0x1.000002p+0f -0x2.468accp+28f : 0x7.b4fd7p-108f : inexact-ok
+= pow downward dbl-64 0x1.000002p+0 -0x2.468accp+28 : 0x7.b4fd685e23a28p-108 : inexact-ok
+= pow tonearest dbl-64 0x1.000002p+0 -0x2.468accp+28 : 0x7.b4fd685e23a2cp-108 : inexact-ok
+= pow towardzero dbl-64 0x1.000002p+0 -0x2.468accp+28 : 0x7.b4fd685e23a28p-108 : inexact-ok
+= pow upward dbl-64 0x1.000002p+0 -0x2.468accp+28 : 0x7.b4fd685e23a2cp-108 : inexact-ok
+= pow downward ldbl-96-intel 0x1.000002p+0L -0x2.468accp+28L : 0x7.b4fd685e23a2b8ap-108L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.000002p+0L -0x2.468accp+28L : 0x7.b4fd685e23a2b8a8p-108L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.000002p+0L -0x2.468accp+28L : 0x7.b4fd685e23a2b8ap-108L : inexact-ok
+= pow upward ldbl-96-intel 0x1.000002p+0L -0x2.468accp+28L : 0x7.b4fd685e23a2b8a8p-108L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.000002p+0L -0x2.468accp+28L : 0x7.b4fd685e23a2b8ap-108L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L -0x2.468accp+28L : 0x7.b4fd685e23a2b8a8p-108L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L -0x2.468accp+28L : 0x7.b4fd685e23a2b8ap-108L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.000002p+0L -0x2.468accp+28L : 0x7.b4fd685e23a2b8a8p-108L : inexact-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x2.468accp+28L : 0x7.b4fd685e23a2b8a632449d5b10bp-108L : inexact-ok
+= pow tonearest ldbl-128 0x1.000002p+0L -0x2.468accp+28L : 0x7.b4fd685e23a2b8a632449d5b10b4p-108L : inexact-ok
+= pow towardzero ldbl-128 0x1.000002p+0L -0x2.468accp+28L : 0x7.b4fd685e23a2b8a632449d5b10bp-108L : inexact-ok
+= pow upward ldbl-128 0x1.000002p+0L -0x2.468accp+28L : 0x7.b4fd685e23a2b8a632449d5b10b4p-108L : inexact-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L -0x2.468accp+28L : 0x7.b4fd685e23a2b8a632449d5b1p-108L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L -0x2.468accp+28L : 0x7.b4fd685e23a2b8a632449d5b1p-108L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.000002p+0L -0x2.468accp+28L : 0x7.b4fd685e23a2b8a632449d5b1p-108L : inexact-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L -0x2.468accp+28L : 0x7.b4fd685e23a2b8a632449d5b12p-108L : inexact-ok
+pow 0x0.fffffffffffff8p0 0x1.23456789abcdfp62
+= pow downward flt-32 0x1p+0f 0x4.8d15ap+60f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x4.8d15ap+60f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x4.8d15ap+60f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x4.8d15ap+60f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x4.8d15ap+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x4.8d15ap+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x4.8d15ap+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x4.8d15ap+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0x1p+0f 0x4.8d1598p+60f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x4.8d1598p+60f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x4.8d1598p+60f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x4.8d1598p+60f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x4.8d1598p+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x4.8d1598p+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x4.8d1598p+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x4.8d1598p+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 0x4.8d159e26af37cp+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x4.8d159e26af37cp+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x4.8d159e26af37cp+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x4.8d159e26af37cp+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0xf.fffffp-4f 0x4.8d15ap+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0xf.fffffp-4f 0x4.8d15ap+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0xf.fffffp-4f 0x4.8d15ap+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0xf.fffffp-4f 0x4.8d15ap+60f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.fffffp-4 0x4.8d15ap+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.fffffp-4 0x4.8d15ap+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 0x4.8d15ap+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.fffffp-4 0x4.8d15ap+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x4.8d15ap+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x4.8d15ap+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x4.8d15ap+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x4.8d15ap+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d15ap+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x4.8d15ap+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x4.8d15ap+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d15ap+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x4.8d15ap+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x4.8d15ap+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x4.8d15ap+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffp-4L 0x4.8d15ap+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x4.8d15ap+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x4.8d15ap+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x4.8d15ap+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x4.8d15ap+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 0xf.fffffp-4f 0x4.8d1598p+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0xf.fffffp-4f 0x4.8d1598p+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0xf.fffffp-4f 0x4.8d1598p+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0xf.fffffp-4f 0x4.8d1598p+60f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.fffffp-4 0x4.8d1598p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.fffffp-4 0x4.8d1598p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 0x4.8d1598p+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.fffffp-4 0x4.8d1598p+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x4.8d1598p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x4.8d1598p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x4.8d1598p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x4.8d1598p+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d1598p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x4.8d1598p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x4.8d1598p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d1598p+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x4.8d1598p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x4.8d1598p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x4.8d1598p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffp-4L 0x4.8d1598p+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x4.8d1598p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x4.8d1598p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x4.8d1598p+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x4.8d1598p+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.fffffp-4 0x4.8d159e26af37cp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.fffffp-4 0x4.8d159e26af37cp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 0x4.8d159e26af37cp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.fffffp-4 0x4.8d159e26af37cp+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af37cp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af37cp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af37cp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af37cp+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af37cp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af37cp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af37cp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af37cp+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37cp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37cp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37cp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37cp+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37cp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37cp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37cp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37cp+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.ffffffffffff8p-4 0x4.8d15ap+60 : 0xb.dea0deefbcfc8p-844 : inexact-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 0x4.8d15ap+60 : 0xb.dea0deefbcfdp-844 : inexact-ok
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 0x4.8d15ap+60 : 0xb.dea0deefbcfc8p-844 : inexact-ok
+= pow upward dbl-64 0xf.ffffffffffff8p-4 0x4.8d15ap+60 : 0xb.dea0deefbcfdp-844 : inexact-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d15ap+60L : 0xb.dea0deefbcfce6dp-844L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d15ap+60L : 0xb.dea0deefbcfce6dp-844L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d15ap+60L : 0xb.dea0deefbcfce6dp-844L : inexact-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d15ap+60L : 0xb.dea0deefbcfce6ep-844L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d15ap+60L : 0xb.dea0deefbcfce6dp-844L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d15ap+60L : 0xb.dea0deefbcfce6dp-844L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d15ap+60L : 0xb.dea0deefbcfce6dp-844L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d15ap+60L : 0xb.dea0deefbcfce6ep-844L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d15ap+60L : 0xb.dea0deefbcfce6d489bb0f8fe77p-844L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d15ap+60L : 0xb.dea0deefbcfce6d489bb0f8fe778p-844L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d15ap+60L : 0xb.dea0deefbcfce6d489bb0f8fe77p-844L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d15ap+60L : 0xb.dea0deefbcfce6d489bb0f8fe778p-844L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d15ap+60L : 0xb.dea0deefbcfce6d489bb0f8fe4p-844L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d15ap+60L : 0xb.dea0deefbcfce6d489bb0f8fe8p-844L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d15ap+60L : 0xb.dea0deefbcfce6d489bb0f8fe4p-844L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d15ap+60L : 0xb.dea0deefbcfce6d489bb0f8fe8p-844L : inexact-ok
+= pow downward dbl-64 0xf.ffffffffffff8p-4 0x4.8d1598p+60 : 0xb.ded059d22e41p-844 : inexact-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 0x4.8d1598p+60 : 0xb.ded059d22e418p-844 : inexact-ok
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 0x4.8d1598p+60 : 0xb.ded059d22e41p-844 : inexact-ok
+= pow upward dbl-64 0xf.ffffffffffff8p-4 0x4.8d1598p+60 : 0xb.ded059d22e418p-844 : inexact-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d1598p+60L : 0xb.ded059d22e416ecp-844L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d1598p+60L : 0xb.ded059d22e416edp-844L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d1598p+60L : 0xb.ded059d22e416ecp-844L : inexact-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d1598p+60L : 0xb.ded059d22e416edp-844L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d1598p+60L : 0xb.ded059d22e416ecp-844L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d1598p+60L : 0xb.ded059d22e416edp-844L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d1598p+60L : 0xb.ded059d22e416ecp-844L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d1598p+60L : 0xb.ded059d22e416edp-844L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d1598p+60L : 0xb.ded059d22e416eceb14d3bd3a31p-844L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d1598p+60L : 0xb.ded059d22e416eceb14d3bd3a31p-844L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d1598p+60L : 0xb.ded059d22e416eceb14d3bd3a31p-844L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d1598p+60L : 0xb.ded059d22e416eceb14d3bd3a318p-844L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d1598p+60L : 0xb.ded059d22e416eceb14d3bd3ap-844L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d1598p+60L : 0xb.ded059d22e416eceb14d3bd3a4p-844L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d1598p+60L : 0xb.ded059d22e416eceb14d3bd3ap-844L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d1598p+60L : 0xb.ded059d22e416eceb14d3bd3a4p-844L : inexact-ok
+= pow downward dbl-64 0xf.ffffffffffff8p-4 0x4.8d159e26af37cp+60 : 0xb.deabd7ffdaefp-844 : inexact-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 0x4.8d159e26af37cp+60 : 0xb.deabd7ffdaef8p-844 : inexact-ok
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 0x4.8d159e26af37cp+60 : 0xb.deabd7ffdaefp-844 : inexact-ok
+= pow upward dbl-64 0xf.ffffffffffff8p-4 0x4.8d159e26af37cp+60 : 0xb.deabd7ffdaef8p-844 : inexact-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+60L : 0xb.deabd7ffdaef65fp-844L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+60L : 0xb.deabd7ffdaef65fp-844L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+60L : 0xb.deabd7ffdaef65fp-844L : inexact-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+60L : 0xb.deabd7ffdaef66p-844L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+60L : 0xb.deabd7ffdaef65fp-844L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+60L : 0xb.deabd7ffdaef65fp-844L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+60L : 0xb.deabd7ffdaef65fp-844L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+60L : 0xb.deabd7ffdaef66p-844L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+60L : 0xb.deabd7ffdaef65f284a1ad1d5b5p-844L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+60L : 0xb.deabd7ffdaef65f284a1ad1d5b5p-844L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+60L : 0xb.deabd7ffdaef65f284a1ad1d5b5p-844L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+60L : 0xb.deabd7ffdaef65f284a1ad1d5b58p-844L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+60L : 0xb.deabd7ffdaef65f284a1ad1d58p-844L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+60L : 0xb.deabd7ffdaef65f284a1ad1d5cp-844L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+60L : 0xb.deabd7ffdaef65f284a1ad1d58p-844L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+60L : 0xb.deabd7ffdaef65f284a1ad1d5cp-844L : inexact-ok
+pow 0x0.fffffffffffff8p0 -0x1.23456789abcdfp62
+= pow downward flt-32 0x1p+0f -0x4.8d1598p+60f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f -0x4.8d1598p+60f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f -0x4.8d1598p+60f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f -0x4.8d1598p+60f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x4.8d1598p+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x4.8d1598p+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x4.8d1598p+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x4.8d1598p+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x4.8d1598p+60L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0x1p+0f -0x4.8d15ap+60f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f -0x4.8d15ap+60f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f -0x4.8d15ap+60f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f -0x4.8d15ap+60f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x4.8d15ap+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x4.8d15ap+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x4.8d15ap+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x4.8d15ap+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x4.8d15ap+60L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x4.8d159e26af37cp+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x4.8d159e26af37cp+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x4.8d159e26af37cp+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x4.8d159e26af37cp+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x4.8d159e26af37cp+60L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0xf.fffffp-4f -0x4.8d1598p+60f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0xf.fffffp-4f -0x4.8d1598p+60f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0xf.fffffp-4f -0x4.8d1598p+60f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0xf.fffffp-4f -0x4.8d1598p+60f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.fffffp-4 -0x4.8d1598p+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.fffffp-4 -0x4.8d1598p+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 -0x4.8d1598p+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.fffffp-4 -0x4.8d1598p+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x4.8d1598p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x4.8d1598p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x4.8d1598p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x4.8d1598p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d1598p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x4.8d1598p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x4.8d1598p+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d1598p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp-4L -0x4.8d1598p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x4.8d1598p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x4.8d1598p+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x4.8d1598p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x4.8d1598p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x4.8d1598p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x4.8d1598p+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x4.8d1598p+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 0xf.fffffp-4f -0x4.8d15ap+60f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0xf.fffffp-4f -0x4.8d15ap+60f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0xf.fffffp-4f -0x4.8d15ap+60f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0xf.fffffp-4f -0x4.8d15ap+60f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.fffffp-4 -0x4.8d15ap+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.fffffp-4 -0x4.8d15ap+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 -0x4.8d15ap+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.fffffp-4 -0x4.8d15ap+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x4.8d15ap+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x4.8d15ap+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x4.8d15ap+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x4.8d15ap+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d15ap+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x4.8d15ap+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x4.8d15ap+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d15ap+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp-4L -0x4.8d15ap+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x4.8d15ap+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x4.8d15ap+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x4.8d15ap+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x4.8d15ap+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x4.8d15ap+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x4.8d15ap+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x4.8d15ap+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.fffffp-4 -0x4.8d159e26af37cp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.fffffp-4 -0x4.8d159e26af37cp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 -0x4.8d159e26af37cp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.fffffp-4 -0x4.8d159e26af37cp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af37cp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af37cp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af37cp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af37cp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af37cp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af37cp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af37cp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af37cp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37cp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37cp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37cp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37cp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37cp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37cp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37cp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37cp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.ffffffffffff8p-4 -0x4.8d1598p+60 : 0x1.590f9a6586a16p+840 : inexact-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 -0x4.8d1598p+60 : 0x1.590f9a6586a17p+840 : inexact-ok
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 -0x4.8d1598p+60 : 0x1.590f9a6586a16p+840 : inexact-ok
+= pow upward dbl-64 0xf.ffffffffffff8p-4 -0x4.8d1598p+60 : 0x1.590f9a6586a17p+840 : inexact-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d1598p+60L : 0x1.590f9a6586a16cd8p+840L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d1598p+60L : 0x1.590f9a6586a16cd8p+840L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d1598p+60L : 0x1.590f9a6586a16cd8p+840L : inexact-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d1598p+60L : 0x1.590f9a6586a16cdap+840L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d1598p+60L : 0x1.590f9a6586a16cd8p+840L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d1598p+60L : 0x1.590f9a6586a16cd8p+840L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d1598p+60L : 0x1.590f9a6586a16cd8p+840L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d1598p+60L : 0x1.590f9a6586a16cdap+840L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d1598p+60L : 0x1.590f9a6586a16cd8802ac0e10965p+840L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d1598p+60L : 0x1.590f9a6586a16cd8802ac0e10965p+840L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d1598p+60L : 0x1.590f9a6586a16cd8802ac0e10965p+840L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d1598p+60L : 0x1.590f9a6586a16cd8802ac0e10966p+840L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d1598p+60L : 0x1.590f9a6586a16cd8802ac0e109p+840L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d1598p+60L : 0x1.590f9a6586a16cd8802ac0e1098p+840L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d1598p+60L : 0x1.590f9a6586a16cd8802ac0e109p+840L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d1598p+60L : 0x1.590f9a6586a16cd8802ac0e1098p+840L : inexact-ok
+= pow downward dbl-64 0xf.ffffffffffff8p-4 -0x4.8d15ap+60 : 0x1.5914feaeb8c2bp+840 : inexact-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 -0x4.8d15ap+60 : 0x1.5914feaeb8c2cp+840 : inexact-ok
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 -0x4.8d15ap+60 : 0x1.5914feaeb8c2bp+840 : inexact-ok
+= pow upward dbl-64 0xf.ffffffffffff8p-4 -0x4.8d15ap+60 : 0x1.5914feaeb8c2cp+840 : inexact-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d15ap+60L : 0x1.5914feaeb8c2bb3ep+840L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d15ap+60L : 0x1.5914feaeb8c2bb4p+840L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d15ap+60L : 0x1.5914feaeb8c2bb3ep+840L : inexact-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d15ap+60L : 0x1.5914feaeb8c2bb4p+840L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d15ap+60L : 0x1.5914feaeb8c2bb3ep+840L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d15ap+60L : 0x1.5914feaeb8c2bb4p+840L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d15ap+60L : 0x1.5914feaeb8c2bb3ep+840L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d15ap+60L : 0x1.5914feaeb8c2bb4p+840L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d15ap+60L : 0x1.5914feaeb8c2bb3f4dc103bc9a17p+840L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d15ap+60L : 0x1.5914feaeb8c2bb3f4dc103bc9a17p+840L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d15ap+60L : 0x1.5914feaeb8c2bb3f4dc103bc9a17p+840L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d15ap+60L : 0x1.5914feaeb8c2bb3f4dc103bc9a18p+840L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d15ap+60L : 0x1.5914feaeb8c2bb3f4dc103bc9ap+840L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d15ap+60L : 0x1.5914feaeb8c2bb3f4dc103bc9ap+840L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d15ap+60L : 0x1.5914feaeb8c2bb3f4dc103bc9ap+840L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d15ap+60L : 0x1.5914feaeb8c2bb3f4dc103bc9a8p+840L : inexact-ok
+= pow downward dbl-64 0xf.ffffffffffff8p-4 -0x4.8d159e26af37cp+60 : 0x1.5913bfacf4afp+840 : inexact-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 -0x4.8d159e26af37cp+60 : 0x1.5913bfacf4afp+840 : inexact-ok
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 -0x4.8d159e26af37cp+60 : 0x1.5913bfacf4afp+840 : inexact-ok
+= pow upward dbl-64 0xf.ffffffffffff8p-4 -0x4.8d159e26af37cp+60 : 0x1.5913bfacf4af1p+840 : inexact-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+60L : 0x1.5913bfacf4af0236p+840L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+60L : 0x1.5913bfacf4af0236p+840L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+60L : 0x1.5913bfacf4af0236p+840L : inexact-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+60L : 0x1.5913bfacf4af0238p+840L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+60L : 0x1.5913bfacf4af0236p+840L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+60L : 0x1.5913bfacf4af0236p+840L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+60L : 0x1.5913bfacf4af0236p+840L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+60L : 0x1.5913bfacf4af0238p+840L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+60L : 0x1.5913bfacf4af023616e6e4d86b73p+840L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+60L : 0x1.5913bfacf4af023616e6e4d86b73p+840L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+60L : 0x1.5913bfacf4af023616e6e4d86b73p+840L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+60L : 0x1.5913bfacf4af023616e6e4d86b74p+840L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+60L : 0x1.5913bfacf4af023616e6e4d86bp+840L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+60L : 0x1.5913bfacf4af023616e6e4d86b8p+840L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+60L : 0x1.5913bfacf4af023616e6e4d86bp+840L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+60L : 0x1.5913bfacf4af023616e6e4d86b8p+840L : inexact-ok
+pow 0x1.0000000000001p0 0x1.23456789abcdfp61
+= pow downward flt-32 0x1.000002p+0f 0x2.468adp+60f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0x1.000002p+0f 0x2.468adp+60f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0x1.000002p+0f 0x2.468adp+60f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0x1.000002p+0f 0x2.468adp+60f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1.000002p+0 0x2.468adp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.000002p+0 0x2.468adp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 0x2.468adp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.000002p+0 0x2.468adp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.000002p+0L 0x2.468adp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.000002p+0L 0x2.468adp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L 0x2.468adp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.000002p+0L 0x2.468adp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.000002p+0L 0x2.468adp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L 0x2.468adp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L 0x2.468adp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.000002p+0L 0x2.468adp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000002p+0L 0x2.468adp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x2.468adp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L 0x2.468adp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x2.468adp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x2.468adp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x2.468adp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x2.468adp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x2.468adp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 0x1.000002p+0f 0x2.468accp+60f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0x1.000002p+0f 0x2.468accp+60f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0x1.000002p+0f 0x2.468accp+60f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0x1.000002p+0f 0x2.468accp+60f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1.000002p+0 0x2.468accp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.000002p+0 0x2.468accp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 0x2.468accp+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.000002p+0 0x2.468accp+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.000002p+0L 0x2.468accp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.000002p+0L 0x2.468accp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L 0x2.468accp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.000002p+0L 0x2.468accp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.000002p+0L 0x2.468accp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L 0x2.468accp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L 0x2.468accp+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.000002p+0L 0x2.468accp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000002p+0L 0x2.468accp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x2.468accp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L 0x2.468accp+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x2.468accp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x2.468accp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x2.468accp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x2.468accp+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x2.468accp+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1.000002p+0 0x2.468acf13579bep+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.000002p+0 0x2.468acf13579bep+60 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 0x2.468acf13579bep+60 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.000002p+0 0x2.468acf13579bep+60 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bep+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bep+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bep+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bep+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bep+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bep+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bep+60L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bep+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000002p+0L 0x2.468acf13579bep+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x2.468acf13579bep+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L 0x2.468acf13579bep+60L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x2.468acf13579bep+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bep+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bep+60L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bep+60L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bep+60L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 0x1p+0f 0x2.468adp+60f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x2.468adp+60f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x2.468adp+60f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x2.468adp+60f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x2.468adp+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x2.468adp+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x2.468adp+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x2.468adp+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0x1p+0f 0x2.468accp+60f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x2.468accp+60f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x2.468accp+60f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x2.468accp+60f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x2.468accp+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x2.468accp+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x2.468accp+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x2.468accp+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 0x2.468acf13579bep+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x2.468acf13579bep+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x2.468acf13579bep+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x2.468acf13579bep+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1.0000000000001p+0 0x2.468adp+60 : 0x1.5914feaeb89dep+840 : inexact-ok
+= pow tonearest dbl-64 0x1.0000000000001p+0 0x2.468adp+60 : 0x1.5914feaeb89dfp+840 : inexact-ok
+= pow towardzero dbl-64 0x1.0000000000001p+0 0x2.468adp+60 : 0x1.5914feaeb89dep+840 : inexact-ok
+= pow upward dbl-64 0x1.0000000000001p+0 0x2.468adp+60 : 0x1.5914feaeb89dfp+840 : inexact-ok
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468adp+60L : 0x1.5914feaeb89dec34p+840L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x2.468adp+60L : 0x1.5914feaeb89dec36p+840L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x2.468adp+60L : 0x1.5914feaeb89dec34p+840L : inexact-ok
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468adp+60L : 0x1.5914feaeb89dec36p+840L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468adp+60L : 0x1.5914feaeb89dec34p+840L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468adp+60L : 0x1.5914feaeb89dec36p+840L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468adp+60L : 0x1.5914feaeb89dec34p+840L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468adp+60L : 0x1.5914feaeb89dec36p+840L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L 0x2.468adp+60L : 0x1.5914feaeb89dec35255637d0b4e2p+840L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L 0x2.468adp+60L : 0x1.5914feaeb89dec35255637d0b4e2p+840L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000001p+0L 0x2.468adp+60L : 0x1.5914feaeb89dec35255637d0b4e2p+840L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L 0x2.468adp+60L : 0x1.5914feaeb89dec35255637d0b4e3p+840L : inexact-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468adp+60L : 0x1.5914feaeb89dec35255637d0b48p+840L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x2.468adp+60L : 0x1.5914feaeb89dec35255637d0b5p+840L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x2.468adp+60L : 0x1.5914feaeb89dec35255637d0b48p+840L : inexact-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468adp+60L : 0x1.5914feaeb89dec35255637d0b5p+840L : inexact-ok
+= pow downward dbl-64 0x1.0000000000001p+0 0x2.468accp+60 : 0x1.590f9a65867c9p+840 : inexact-ok
+= pow tonearest dbl-64 0x1.0000000000001p+0 0x2.468accp+60 : 0x1.590f9a65867cap+840 : inexact-ok
+= pow towardzero dbl-64 0x1.0000000000001p+0 0x2.468accp+60 : 0x1.590f9a65867c9p+840 : inexact-ok
+= pow upward dbl-64 0x1.0000000000001p+0 0x2.468accp+60 : 0x1.590f9a65867cap+840 : inexact-ok
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468accp+60L : 0x1.590f9a65867c9e6p+840L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x2.468accp+60L : 0x1.590f9a65867c9e62p+840L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x2.468accp+60L : 0x1.590f9a65867c9e6p+840L : inexact-ok
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468accp+60L : 0x1.590f9a65867c9e62p+840L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468accp+60L : 0x1.590f9a65867c9e6p+840L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468accp+60L : 0x1.590f9a65867c9e62p+840L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468accp+60L : 0x1.590f9a65867c9e6p+840L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468accp+60L : 0x1.590f9a65867c9e62p+840L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L 0x2.468accp+60L : 0x1.590f9a65867c9e61d3750ccab8a6p+840L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L 0x2.468accp+60L : 0x1.590f9a65867c9e61d3750ccab8a7p+840L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000001p+0L 0x2.468accp+60L : 0x1.590f9a65867c9e61d3750ccab8a6p+840L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L 0x2.468accp+60L : 0x1.590f9a65867c9e61d3750ccab8a7p+840L : inexact-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468accp+60L : 0x1.590f9a65867c9e61d3750ccab88p+840L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x2.468accp+60L : 0x1.590f9a65867c9e61d3750ccab88p+840L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x2.468accp+60L : 0x1.590f9a65867c9e61d3750ccab88p+840L : inexact-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468accp+60L : 0x1.590f9a65867c9e61d3750ccab9p+840L : inexact-ok
+= pow downward dbl-64 0x1.0000000000001p+0 0x2.468acf13579bep+60 : 0x1.5913bfacf48a3p+840 : inexact-ok
+= pow tonearest dbl-64 0x1.0000000000001p+0 0x2.468acf13579bep+60 : 0x1.5913bfacf48a3p+840 : inexact-ok
+= pow towardzero dbl-64 0x1.0000000000001p+0 0x2.468acf13579bep+60 : 0x1.5913bfacf48a3p+840 : inexact-ok
+= pow upward dbl-64 0x1.0000000000001p+0 0x2.468acf13579bep+60 : 0x1.5913bfacf48a4p+840 : inexact-ok
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bep+60L : 0x1.5913bfacf48a334ep+840L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bep+60L : 0x1.5913bfacf48a334ep+840L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bep+60L : 0x1.5913bfacf48a334ep+840L : inexact-ok
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bep+60L : 0x1.5913bfacf48a335p+840L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bep+60L : 0x1.5913bfacf48a334ep+840L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bep+60L : 0x1.5913bfacf48a334ep+840L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bep+60L : 0x1.5913bfacf48a334ep+840L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bep+60L : 0x1.5913bfacf48a335p+840L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bep+60L : 0x1.5913bfacf48a334e04740e2bacb8p+840L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bep+60L : 0x1.5913bfacf48a334e04740e2bacb9p+840L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bep+60L : 0x1.5913bfacf48a334e04740e2bacb8p+840L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bep+60L : 0x1.5913bfacf48a334e04740e2bacb9p+840L : inexact-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bep+60L : 0x1.5913bfacf48a334e04740e2bac8p+840L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bep+60L : 0x1.5913bfacf48a334e04740e2bac8p+840L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bep+60L : 0x1.5913bfacf48a334e04740e2bac8p+840L : inexact-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bep+60L : 0x1.5913bfacf48a334e04740e2badp+840L : inexact-ok
+pow 0x1.0000000000001p0 -0x1.23456789abcdfp61
+= pow downward flt-32 0x1.000002p+0f -0x2.468accp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0x1.000002p+0f -0x2.468accp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0x1.000002p+0f -0x2.468accp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0x1.000002p+0f -0x2.468accp+60f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x1.000002p+0 -0x2.468accp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.000002p+0 -0x2.468accp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 -0x2.468accp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.000002p+0 -0x2.468accp+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.000002p+0L -0x2.468accp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.000002p+0L -0x2.468accp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L -0x2.468accp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.000002p+0L -0x2.468accp+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.000002p+0L -0x2.468accp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L -0x2.468accp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L -0x2.468accp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.000002p+0L -0x2.468accp+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x2.468accp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000002p+0L -0x2.468accp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L -0x2.468accp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000002p+0L -0x2.468accp+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L -0x2.468accp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000002p+0L -0x2.468accp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L -0x2.468accp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000002p+0L -0x2.468accp+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 0x1.000002p+0f -0x2.468adp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0x1.000002p+0f -0x2.468adp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0x1.000002p+0f -0x2.468adp+60f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0x1.000002p+0f -0x2.468adp+60f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x1.000002p+0 -0x2.468adp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.000002p+0 -0x2.468adp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 -0x2.468adp+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.000002p+0 -0x2.468adp+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.000002p+0L -0x2.468adp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.000002p+0L -0x2.468adp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L -0x2.468adp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.000002p+0L -0x2.468adp+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.000002p+0L -0x2.468adp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L -0x2.468adp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L -0x2.468adp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.000002p+0L -0x2.468adp+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x2.468adp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000002p+0L -0x2.468adp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L -0x2.468adp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000002p+0L -0x2.468adp+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L -0x2.468adp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000002p+0L -0x2.468adp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L -0x2.468adp+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000002p+0L -0x2.468adp+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x1.000002p+0 -0x2.468acf13579bep+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.000002p+0 -0x2.468acf13579bep+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 -0x2.468acf13579bep+60 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.000002p+0 -0x2.468acf13579bep+60 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bep+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bep+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bep+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bep+60L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bep+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bep+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bep+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bep+60L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x2.468acf13579bep+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000002p+0L -0x2.468acf13579bep+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L -0x2.468acf13579bep+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000002p+0L -0x2.468acf13579bep+60L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bep+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bep+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bep+60L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bep+60L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 0x1p+0f -0x2.468accp+60f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f -0x2.468accp+60f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f -0x2.468accp+60f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f -0x2.468accp+60f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x2.468accp+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x2.468accp+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x2.468accp+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x2.468accp+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x2.468accp+60L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0x1p+0f -0x2.468adp+60f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f -0x2.468adp+60f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f -0x2.468adp+60f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f -0x2.468adp+60f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x2.468adp+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x2.468adp+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x2.468adp+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x2.468adp+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x2.468adp+60L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x2.468acf13579bep+60 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x2.468acf13579bep+60 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x2.468acf13579bep+60 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x2.468acf13579bep+60 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x2.468acf13579bep+60L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1.0000000000001p+0 -0x2.468accp+60 : 0xb.ded059d22f858p-844 : inexact-ok
+= pow tonearest dbl-64 0x1.0000000000001p+0 -0x2.468accp+60 : 0xb.ded059d22f858p-844 : inexact-ok
+= pow towardzero dbl-64 0x1.0000000000001p+0 -0x2.468accp+60 : 0xb.ded059d22f858p-844 : inexact-ok
+= pow upward dbl-64 0x1.0000000000001p+0 -0x2.468accp+60 : 0xb.ded059d22f86p-844 : inexact-ok
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468accp+60L : 0xb.ded059d22f8592ap-844L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L -0x2.468accp+60L : 0xb.ded059d22f8592bp-844L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L -0x2.468accp+60L : 0xb.ded059d22f8592ap-844L : inexact-ok
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468accp+60L : 0xb.ded059d22f8592bp-844L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468accp+60L : 0xb.ded059d22f8592ap-844L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468accp+60L : 0xb.ded059d22f8592bp-844L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468accp+60L : 0xb.ded059d22f8592ap-844L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468accp+60L : 0xb.ded059d22f8592bp-844L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L -0x2.468accp+60L : 0xb.ded059d22f8592ad9a28ad84a298p-844L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L -0x2.468accp+60L : 0xb.ded059d22f8592ad9a28ad84a2ap-844L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000001p+0L -0x2.468accp+60L : 0xb.ded059d22f8592ad9a28ad84a298p-844L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L -0x2.468accp+60L : 0xb.ded059d22f8592ad9a28ad84a2ap-844L : inexact-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468accp+60L : 0xb.ded059d22f8592ad9a28ad84ap-844L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L -0x2.468accp+60L : 0xb.ded059d22f8592ad9a28ad84a4p-844L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L -0x2.468accp+60L : 0xb.ded059d22f8592ad9a28ad84ap-844L : inexact-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468accp+60L : 0xb.ded059d22f8592ad9a28ad84a4p-844L : inexact-ok
+= pow downward dbl-64 0x1.0000000000001p+0 -0x2.468adp+60 : 0xb.dea0deefbe41p-844 : inexact-ok
+= pow tonearest dbl-64 0x1.0000000000001p+0 -0x2.468adp+60 : 0xb.dea0deefbe41p-844 : inexact-ok
+= pow towardzero dbl-64 0x1.0000000000001p+0 -0x2.468adp+60 : 0xb.dea0deefbe41p-844 : inexact-ok
+= pow upward dbl-64 0x1.0000000000001p+0 -0x2.468adp+60 : 0xb.dea0deefbe418p-844 : inexact-ok
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468adp+60L : 0xb.dea0deefbe4105ap-844L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L -0x2.468adp+60L : 0xb.dea0deefbe4105ap-844L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L -0x2.468adp+60L : 0xb.dea0deefbe4105ap-844L : inexact-ok
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468adp+60L : 0xb.dea0deefbe4105bp-844L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468adp+60L : 0xb.dea0deefbe4105ap-844L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468adp+60L : 0xb.dea0deefbe4105ap-844L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468adp+60L : 0xb.dea0deefbe4105ap-844L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468adp+60L : 0xb.dea0deefbe4105bp-844L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L -0x2.468adp+60L : 0xb.dea0deefbe4105a526fa1915e99p-844L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L -0x2.468adp+60L : 0xb.dea0deefbe4105a526fa1915e998p-844L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000001p+0L -0x2.468adp+60L : 0xb.dea0deefbe4105a526fa1915e99p-844L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L -0x2.468adp+60L : 0xb.dea0deefbe4105a526fa1915e998p-844L : inexact-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468adp+60L : 0xb.dea0deefbe4105a526fa1915e8p-844L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L -0x2.468adp+60L : 0xb.dea0deefbe4105a526fa1915e8p-844L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L -0x2.468adp+60L : 0xb.dea0deefbe4105a526fa1915e8p-844L : inexact-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468adp+60L : 0xb.dea0deefbe4105a526fa1915ecp-844L : inexact-ok
+= pow downward dbl-64 0x1.0000000000001p+0 -0x2.468acf13579bep+60 : 0xb.deabd7ffdc338p-844 : inexact-ok
+= pow tonearest dbl-64 0x1.0000000000001p+0 -0x2.468acf13579bep+60 : 0xb.deabd7ffdc338p-844 : inexact-ok
+= pow towardzero dbl-64 0x1.0000000000001p+0 -0x2.468acf13579bep+60 : 0xb.deabd7ffdc338p-844 : inexact-ok
+= pow upward dbl-64 0x1.0000000000001p+0 -0x2.468acf13579bep+60 : 0xb.deabd7ffdc34p-844 : inexact-ok
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bep+60L : 0xb.deabd7ffdc3385ep-844L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bep+60L : 0xb.deabd7ffdc3385fp-844L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bep+60L : 0xb.deabd7ffdc3385ep-844L : inexact-ok
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bep+60L : 0xb.deabd7ffdc3385fp-844L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bep+60L : 0xb.deabd7ffdc3385ep-844L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bep+60L : 0xb.deabd7ffdc3385fp-844L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bep+60L : 0xb.deabd7ffdc3385ep-844L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bep+60L : 0xb.deabd7ffdc3385fp-844L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bep+60L : 0xb.deabd7ffdc3385ee405985fd8ef8p-844L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bep+60L : 0xb.deabd7ffdc3385ee405985fd8ef8p-844L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bep+60L : 0xb.deabd7ffdc3385ee405985fd8ef8p-844L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bep+60L : 0xb.deabd7ffdc3385ee405985fd8fp-844L : inexact-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bep+60L : 0xb.deabd7ffdc3385ee405985fd8cp-844L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bep+60L : 0xb.deabd7ffdc3385ee405985fd9p-844L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bep+60L : 0xb.deabd7ffdc3385ee405985fd8cp-844L : inexact-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bep+60L : 0xb.deabd7ffdc3385ee405985fd9p-844L : inexact-ok
+pow 0x0.ffffffffffffffffp0 0x1.23456789abcdef0ep77
+= pow downward flt-32 0x1p+0f 0x2.468adp+76f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x2.468adp+76f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x2.468adp+76f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x2.468adp+76f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x2.468adp+76 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x2.468adp+76 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x2.468adp+76 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x2.468adp+76 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0x1p+0f 0x2.468accp+76f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x2.468accp+76f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x2.468accp+76f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x2.468accp+76f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x2.468accp+76 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x2.468accp+76 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x2.468accp+76 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x2.468accp+76 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 0x2.468acf13579bep+76 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x2.468acf13579bep+76 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x2.468acf13579bep+76 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x2.468acf13579bep+76 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 0x2.468acf13579bcp+76 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x2.468acf13579bcp+76 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x2.468acf13579bcp+76 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x2.468acf13579bcp+76 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0xf.fffffp-4f 0x2.468adp+76f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0xf.fffffp-4f 0x2.468adp+76f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0xf.fffffp-4f 0x2.468adp+76f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0xf.fffffp-4f 0x2.468adp+76f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.fffffp-4 0x2.468adp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.fffffp-4 0x2.468adp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 0x2.468adp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.fffffp-4 0x2.468adp+76 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x2.468adp+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x2.468adp+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffp-4L 0x2.468adp+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x2.468adp+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 0xf.fffffp-4f 0x2.468accp+76f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0xf.fffffp-4f 0x2.468accp+76f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0xf.fffffp-4f 0x2.468accp+76f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0xf.fffffp-4f 0x2.468accp+76f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.fffffp-4 0x2.468accp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.fffffp-4 0x2.468accp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 0x2.468accp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.fffffp-4 0x2.468accp+76 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x2.468accp+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x2.468accp+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffp-4L 0x2.468accp+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x2.468accp+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.fffffp-4 0x2.468acf13579bep+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.fffffp-4 0x2.468acf13579bep+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 0x2.468acf13579bep+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.fffffp-4 0x2.468acf13579bep+76 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x2.468acf13579bep+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x2.468acf13579bep+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffp-4L 0x2.468acf13579bep+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x2.468acf13579bep+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.fffffp-4 0x2.468acf13579bcp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.fffffp-4 0x2.468acf13579bcp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 0x2.468acf13579bcp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.fffffp-4 0x2.468acf13579bcp+76 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x2.468acf13579bcp+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x2.468acf13579bcp+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffp-4L 0x2.468acf13579bcp+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x2.468acf13579bcp+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x2.468acf13579bde1cp+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x2.468acf13579bde1cp+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffp-4L 0x2.468acf13579bde1cp+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x2.468acf13579bde1cp+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.ffffffffffff8p-4 0x2.468adp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 0x2.468adp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 0x2.468adp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.ffffffffffff8p-4 0x2.468adp+76 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468adp+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468adp+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L 0x2.468adp+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468adp+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.ffffffffffff8p-4 0x2.468accp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 0x2.468accp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 0x2.468accp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.ffffffffffff8p-4 0x2.468accp+76 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468accp+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468accp+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L 0x2.468accp+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468accp+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.ffffffffffff8p-4 0x2.468acf13579bep+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 0x2.468acf13579bep+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 0x2.468acf13579bep+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.ffffffffffff8p-4 0x2.468acf13579bep+76 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468acf13579bep+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468acf13579bep+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L 0x2.468acf13579bep+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468acf13579bep+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.ffffffffffff8p-4 0x2.468acf13579bcp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 0x2.468acf13579bcp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 0x2.468acf13579bcp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.ffffffffffff8p-4 0x2.468acf13579bcp+76 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468acf13579bcp+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468acf13579bcp+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L 0x2.468acf13579bcp+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468acf13579bcp+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x2.468acf13579bde1cp+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x2.468acf13579bde1cp+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L 0x2.468acf13579bde1cp+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x2.468acf13579bde1cp+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468adp+76L : 0x2.2785707939b37b4p-13448L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468adp+76L : 0x2.2785707939b37b4p-13448L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468adp+76L : 0x2.2785707939b37b4p-13448L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468adp+76L : 0x2.2785707939b37b44p-13448L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468adp+76L : 0x2.2785707939b37b4p-13448L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468adp+76L : 0x2.2785707939b37b4p-13448L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468adp+76L : 0x2.2785707939b37b4p-13448L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468adp+76L : 0x2.2785707939b37b44p-13448L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L 0x2.468adp+76L : 0x2.2785707939b37b4143e88e857df2p-13448L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L 0x2.468adp+76L : 0x2.2785707939b37b4143e88e857df2p-13448L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L 0x2.468adp+76L : 0x2.2785707939b37b4143e88e857df2p-13448L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L 0x2.468adp+76L : 0x2.2785707939b37b4143e88e857df4p-13448L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468adp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468adp+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468accp+76L : 0x2.280f6312f34af8f4p-13448L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468accp+76L : 0x2.280f6312f34af8f4p-13448L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468accp+76L : 0x2.280f6312f34af8f4p-13448L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468accp+76L : 0x2.280f6312f34af8f8p-13448L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468accp+76L : 0x2.280f6312f34af8f4p-13448L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468accp+76L : 0x2.280f6312f34af8f4p-13448L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468accp+76L : 0x2.280f6312f34af8f4p-13448L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468accp+76L : 0x2.280f6312f34af8f8p-13448L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L 0x2.468accp+76L : 0x2.280f6312f34af8f40d2812a4964p-13448L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L 0x2.468accp+76L : 0x2.280f6312f34af8f40d2812a4964p-13448L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L 0x2.468accp+76L : 0x2.280f6312f34af8f40d2812a4964p-13448L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L 0x2.468accp+76L : 0x2.280f6312f34af8f40d2812a49642p-13448L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468accp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468accp+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468acf13579bep+76L : 0x2.27a54f0197ba441cp-13448L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468acf13579bep+76L : 0x2.27a54f0197ba442p-13448L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468acf13579bep+76L : 0x2.27a54f0197ba441cp-13448L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468acf13579bep+76L : 0x2.27a54f0197ba442p-13448L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468acf13579bep+76L : 0x2.27a54f0197ba441cp-13448L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468acf13579bep+76L : 0x2.27a54f0197ba442p-13448L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468acf13579bep+76L : 0x2.27a54f0197ba441cp-13448L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468acf13579bep+76L : 0x2.27a54f0197ba442p-13448L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L 0x2.468acf13579bep+76L : 0x2.27a54f0197ba441f36a9ee2dd268p-13448L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L 0x2.468acf13579bep+76L : 0x2.27a54f0197ba441f36a9ee2dd268p-13448L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L 0x2.468acf13579bep+76L : 0x2.27a54f0197ba441f36a9ee2dd268p-13448L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L 0x2.468acf13579bep+76L : 0x2.27a54f0197ba441f36a9ee2dd26ap-13448L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468acf13579bep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468acf13579bep+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468acf13579bcp+76L : 0x2.27a54f019c098ebcp-13448L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468acf13579bcp+76L : 0x2.27a54f019c098ebcp-13448L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468acf13579bcp+76L : 0x2.27a54f019c098ebcp-13448L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468acf13579bcp+76L : 0x2.27a54f019c098ecp-13448L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468acf13579bcp+76L : 0x2.27a54f019c098ebcp-13448L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468acf13579bcp+76L : 0x2.27a54f019c098ebcp-13448L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468acf13579bcp+76L : 0x2.27a54f019c098ebcp-13448L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468acf13579bcp+76L : 0x2.27a54f019c098ecp-13448L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L 0x2.468acf13579bcp+76L : 0x2.27a54f019c098ebd39ddb200b1p-13448L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L 0x2.468acf13579bcp+76L : 0x2.27a54f019c098ebd39ddb200b1p-13448L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L 0x2.468acf13579bcp+76L : 0x2.27a54f019c098ebd39ddb200b1p-13448L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L 0x2.468acf13579bcp+76L : 0x2.27a54f019c098ebd39ddb200b102p-13448L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468acf13579bcp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468acf13579bcp+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468acf13579bde1cp+76L : 0x2.27a54f0197fb7364p-13448L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468acf13579bde1cp+76L : 0x2.27a54f0197fb7368p-13448L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468acf13579bde1cp+76L : 0x2.27a54f0197fb7364p-13448L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x2.468acf13579bde1cp+76L : 0x2.27a54f0197fb7368p-13448L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468acf13579bde1cp+76L : 0x2.27a54f0197fb7364p-13448L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468acf13579bde1cp+76L : 0x2.27a54f0197fb7368p-13448L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468acf13579bde1cp+76L : 0x2.27a54f0197fb7364p-13448L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x2.468acf13579bde1cp+76L : 0x2.27a54f0197fb7368p-13448L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L 0x2.468acf13579bde1cp+76L : 0x2.27a54f0197fb7367cc9a1fca4a62p-13448L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L 0x2.468acf13579bde1cp+76L : 0x2.27a54f0197fb7367cc9a1fca4a62p-13448L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L 0x2.468acf13579bde1cp+76L : 0x2.27a54f0197fb7367cc9a1fca4a62p-13448L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L 0x2.468acf13579bde1cp+76L : 0x2.27a54f0197fb7367cc9a1fca4a64p-13448L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468acf13579bde1cp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x2.468acf13579bde1cp+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow 0x0.ffffffffffffffffp0 -0x1.23456789abcdef0ep77
+= pow downward flt-32 0x1p+0f -0x2.468accp+76f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f -0x2.468accp+76f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f -0x2.468accp+76f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f -0x2.468accp+76f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x2.468accp+76 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x2.468accp+76 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x2.468accp+76 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x2.468accp+76 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x2.468accp+76L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0x1p+0f -0x2.468adp+76f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f -0x2.468adp+76f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f -0x2.468adp+76f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f -0x2.468adp+76f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x2.468adp+76 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x2.468adp+76 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x2.468adp+76 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x2.468adp+76 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x2.468adp+76L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x2.468acf13579bcp+76 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x2.468acf13579bcp+76 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x2.468acf13579bcp+76 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x2.468acf13579bcp+76 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x2.468acf13579bcp+76L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x2.468acf13579bep+76 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x2.468acf13579bep+76 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x2.468acf13579bep+76 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x2.468acf13579bep+76 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x2.468acf13579bep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x2.468acf13579bde1cp+76L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0xf.fffffp-4f -0x2.468accp+76f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0xf.fffffp-4f -0x2.468accp+76f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0xf.fffffp-4f -0x2.468accp+76f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0xf.fffffp-4f -0x2.468accp+76f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.fffffp-4 -0x2.468accp+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.fffffp-4 -0x2.468accp+76 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 -0x2.468accp+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.fffffp-4 -0x2.468accp+76 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x2.468accp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x2.468accp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x2.468accp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x2.468accp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp-4L -0x2.468accp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x2.468accp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x2.468accp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x2.468accp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 0xf.fffffp-4f -0x2.468adp+76f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0xf.fffffp-4f -0x2.468adp+76f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0xf.fffffp-4f -0x2.468adp+76f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0xf.fffffp-4f -0x2.468adp+76f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.fffffp-4 -0x2.468adp+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.fffffp-4 -0x2.468adp+76 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 -0x2.468adp+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.fffffp-4 -0x2.468adp+76 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x2.468adp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x2.468adp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x2.468adp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x2.468adp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp-4L -0x2.468adp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x2.468adp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x2.468adp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x2.468adp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.fffffp-4 -0x2.468acf13579bcp+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.fffffp-4 -0x2.468acf13579bcp+76 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 -0x2.468acf13579bcp+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.fffffp-4 -0x2.468acf13579bcp+76 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x2.468acf13579bcp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x2.468acf13579bcp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x2.468acf13579bcp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x2.468acf13579bcp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp-4L -0x2.468acf13579bcp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x2.468acf13579bcp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x2.468acf13579bcp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x2.468acf13579bcp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.fffffp-4 -0x2.468acf13579bep+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.fffffp-4 -0x2.468acf13579bep+76 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 -0x2.468acf13579bep+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.fffffp-4 -0x2.468acf13579bep+76 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x2.468acf13579bep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x2.468acf13579bep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x2.468acf13579bep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x2.468acf13579bep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp-4L -0x2.468acf13579bep+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x2.468acf13579bep+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x2.468acf13579bep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x2.468acf13579bep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x2.468acf13579bde1cp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x2.468acf13579bde1cp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x2.468acf13579bde1cp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x2.468acf13579bde1cp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp-4L -0x2.468acf13579bde1cp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x2.468acf13579bde1cp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x2.468acf13579bde1cp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x2.468acf13579bde1cp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.ffffffffffff8p-4 -0x2.468accp+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 -0x2.468accp+76 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 -0x2.468accp+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.ffffffffffff8p-4 -0x2.468accp+76 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468accp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468accp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468accp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468accp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L -0x2.468accp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L -0x2.468accp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468accp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468accp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.ffffffffffff8p-4 -0x2.468adp+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 -0x2.468adp+76 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 -0x2.468adp+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.ffffffffffff8p-4 -0x2.468adp+76 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468adp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468adp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468adp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468adp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L -0x2.468adp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L -0x2.468adp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468adp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468adp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.ffffffffffff8p-4 -0x2.468acf13579bcp+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 -0x2.468acf13579bcp+76 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 -0x2.468acf13579bcp+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.ffffffffffff8p-4 -0x2.468acf13579bcp+76 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468acf13579bcp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468acf13579bcp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468acf13579bcp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468acf13579bcp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L -0x2.468acf13579bcp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L -0x2.468acf13579bcp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468acf13579bcp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468acf13579bcp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.ffffffffffff8p-4 -0x2.468acf13579bep+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 -0x2.468acf13579bep+76 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 -0x2.468acf13579bep+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.ffffffffffff8p-4 -0x2.468acf13579bep+76 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468acf13579bep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468acf13579bep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468acf13579bep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468acf13579bep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L -0x2.468acf13579bep+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L -0x2.468acf13579bep+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468acf13579bep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468acf13579bep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468acf13579bde1cp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468acf13579bde1cp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468acf13579bde1cp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468acf13579bde1cp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L -0x2.468acf13579bde1cp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L -0x2.468acf13579bde1cp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468acf13579bde1cp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468acf13579bde1cp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468accp+76L : 0x7.6b632ba5541b3648p+13444L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468accp+76L : 0x7.6b632ba5541b3648p+13444L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468accp+76L : 0x7.6b632ba5541b3648p+13444L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468accp+76L : 0x7.6b632ba5541b365p+13444L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468accp+76L : 0x7.6b632ba5541b3648p+13444L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468accp+76L : 0x7.6b632ba5541b3648p+13444L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468accp+76L : 0x7.6b632ba5541b3648p+13444L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468accp+76L : 0x7.6b632ba5541b365p+13444L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L -0x2.468accp+76L : 0x7.6b632ba5541b364949a01fc586dcp+13444L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L -0x2.468accp+76L : 0x7.6b632ba5541b364949a01fc586dcp+13444L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L -0x2.468accp+76L : 0x7.6b632ba5541b364949a01fc586dcp+13444L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L -0x2.468accp+76L : 0x7.6b632ba5541b364949a01fc586ep+13444L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468accp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468accp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468accp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468adp+76L : 0x7.6d3e3fd0495eacep+13444L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468adp+76L : 0x7.6d3e3fd0495eace8p+13444L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468adp+76L : 0x7.6d3e3fd0495eacep+13444L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468adp+76L : 0x7.6d3e3fd0495eace8p+13444L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468adp+76L : 0x7.6d3e3fd0495eacep+13444L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468adp+76L : 0x7.6d3e3fd0495eace8p+13444L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468adp+76L : 0x7.6d3e3fd0495eacep+13444L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468adp+76L : 0x7.6d3e3fd0495eace8p+13444L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L -0x2.468adp+76L : 0x7.6d3e3fd0495eace796c53e935074p+13444L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L -0x2.468adp+76L : 0x7.6d3e3fd0495eace796c53e935074p+13444L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L -0x2.468adp+76L : 0x7.6d3e3fd0495eace796c53e935074p+13444L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L -0x2.468adp+76L : 0x7.6d3e3fd0495eace796c53e935078p+13444L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468adp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468adp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468adp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468acf13579bcp+76L : 0x7.6cd0697cdc7d6f18p+13444L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468acf13579bcp+76L : 0x7.6cd0697cdc7d6f2p+13444L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468acf13579bcp+76L : 0x7.6cd0697cdc7d6f18p+13444L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468acf13579bcp+76L : 0x7.6cd0697cdc7d6f2p+13444L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468acf13579bcp+76L : 0x7.6cd0697cdc7d6f18p+13444L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468acf13579bcp+76L : 0x7.6cd0697cdc7d6f2p+13444L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468acf13579bcp+76L : 0x7.6cd0697cdc7d6f18p+13444L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468acf13579bcp+76L : 0x7.6cd0697cdc7d6f2p+13444L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L -0x2.468acf13579bcp+76L : 0x7.6cd0697cdc7d6f1ed93a2bfa5e28p+13444L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L -0x2.468acf13579bcp+76L : 0x7.6cd0697cdc7d6f1ed93a2bfa5e28p+13444L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L -0x2.468acf13579bcp+76L : 0x7.6cd0697cdc7d6f1ed93a2bfa5e28p+13444L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L -0x2.468acf13579bcp+76L : 0x7.6cd0697cdc7d6f1ed93a2bfa5e2cp+13444L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468acf13579bcp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468acf13579bcp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468acf13579bcp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468acf13579bep+76L : 0x7.6cd0697ceb570ffp+13444L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468acf13579bep+76L : 0x7.6cd0697ceb570ffp+13444L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468acf13579bep+76L : 0x7.6cd0697ceb570ffp+13444L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468acf13579bep+76L : 0x7.6cd0697ceb570ff8p+13444L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468acf13579bep+76L : 0x7.6cd0697ceb570ffp+13444L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468acf13579bep+76L : 0x7.6cd0697ceb570ffp+13444L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468acf13579bep+76L : 0x7.6cd0697ceb570ffp+13444L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468acf13579bep+76L : 0x7.6cd0697ceb570ff8p+13444L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L -0x2.468acf13579bep+76L : 0x7.6cd0697ceb570ff1d3020079764p+13444L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L -0x2.468acf13579bep+76L : 0x7.6cd0697ceb570ff1d3020079764p+13444L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L -0x2.468acf13579bep+76L : 0x7.6cd0697ceb570ff1d3020079764p+13444L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L -0x2.468acf13579bep+76L : 0x7.6cd0697ceb570ff1d30200797644p+13444L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468acf13579bep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468acf13579bep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468acf13579bep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468acf13579bde1cp+76L : 0x7.6cd0697cea76745p+13444L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468acf13579bde1cp+76L : 0x7.6cd0697cea76745p+13444L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468acf13579bde1cp+76L : 0x7.6cd0697cea76745p+13444L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x2.468acf13579bde1cp+76L : 0x7.6cd0697cea767458p+13444L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468acf13579bde1cp+76L : 0x7.6cd0697cea76745p+13444L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468acf13579bde1cp+76L : 0x7.6cd0697cea76745p+13444L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468acf13579bde1cp+76L : 0x7.6cd0697cea76745p+13444L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x2.468acf13579bde1cp+76L : 0x7.6cd0697cea767458p+13444L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L -0x2.468acf13579bde1cp+76L : 0x7.6cd0697cea7674515bff3eb50558p+13444L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L -0x2.468acf13579bde1cp+76L : 0x7.6cd0697cea7674515bff3eb50558p+13444L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L -0x2.468acf13579bde1cp+76L : 0x7.6cd0697cea7674515bff3eb50558p+13444L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L -0x2.468acf13579bde1cp+76L : 0x7.6cd0697cea7674515bff3eb5055cp+13444L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468acf13579bde1cp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468acf13579bde1cp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x2.468acf13579bde1cp+76L : plus_infty : inexact-ok overflow errno-erange
+pow 0x1.0000000000000002p0 0x1.23456789abcdef0ep76
+= pow downward flt-32 0x1.000002p+0f 0x1.234568p+76f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0x1.000002p+0f 0x1.234568p+76f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0x1.000002p+0f 0x1.234568p+76f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0x1.000002p+0f 0x1.234568p+76f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1.000002p+0 0x1.234568p+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.000002p+0 0x1.234568p+76 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 0x1.234568p+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.000002p+0 0x1.234568p+76 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.000002p+0L 0x1.234568p+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.000002p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L 0x1.234568p+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.000002p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.000002p+0L 0x1.234568p+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L 0x1.234568p+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.000002p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000002p+0L 0x1.234568p+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L 0x1.234568p+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x1.234568p+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x1.234568p+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 0x1.000002p+0f 0x1.234566p+76f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0x1.000002p+0f 0x1.234566p+76f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0x1.000002p+0f 0x1.234566p+76f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0x1.000002p+0f 0x1.234566p+76f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1.000002p+0 0x1.234566p+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.000002p+0 0x1.234566p+76 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 0x1.234566p+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.000002p+0 0x1.234566p+76 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.000002p+0L 0x1.234566p+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.000002p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L 0x1.234566p+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.000002p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.000002p+0L 0x1.234566p+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L 0x1.234566p+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.000002p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000002p+0L 0x1.234566p+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L 0x1.234566p+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x1.234566p+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x1.234566p+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1.000002p+0 0x1.23456789abcdfp+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.000002p+0 0x1.23456789abcdfp+76 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 0x1.23456789abcdfp+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.000002p+0 0x1.23456789abcdfp+76 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.000002p+0L 0x1.23456789abcdfp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.000002p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L 0x1.23456789abcdfp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.000002p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.000002p+0L 0x1.23456789abcdfp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L 0x1.23456789abcdfp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.000002p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000002p+0L 0x1.23456789abcdfp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L 0x1.23456789abcdfp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x1.23456789abcdfp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x1.23456789abcdfp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1.000002p+0 0x1.23456789abcdep+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.000002p+0 0x1.23456789abcdep+76 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 0x1.23456789abcdep+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.000002p+0 0x1.23456789abcdep+76 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.000002p+0L 0x1.23456789abcdep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.000002p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L 0x1.23456789abcdep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.000002p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.000002p+0L 0x1.23456789abcdep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L 0x1.23456789abcdep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.000002p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000002p+0L 0x1.23456789abcdep+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L 0x1.23456789abcdep+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x1.23456789abcdep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x1.23456789abcdep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.000002p+0L 0x1.23456789abcdef0ep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.000002p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L 0x1.23456789abcdef0ep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.000002p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.000002p+0L 0x1.23456789abcdef0ep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L 0x1.23456789abcdef0ep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.000002p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000002p+0L 0x1.23456789abcdef0ep+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L 0x1.23456789abcdef0ep+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x1.23456789abcdef0ep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x1.23456789abcdef0ep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 0x1p+0f 0x1.234568p+76f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x1.234568p+76f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x1.234568p+76f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x1.234568p+76f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x1.234568p+76 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x1.234568p+76 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x1.234568p+76 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x1.234568p+76 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0x1p+0f 0x1.234566p+76f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x1.234566p+76f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x1.234566p+76f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x1.234566p+76f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x1.234566p+76 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x1.234566p+76 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x1.234566p+76 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x1.234566p+76 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 0x1.23456789abcdfp+76 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x1.23456789abcdfp+76 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x1.23456789abcdfp+76 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x1.23456789abcdfp+76 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 0x1.23456789abcdep+76 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x1.23456789abcdep+76 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x1.23456789abcdep+76 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x1.23456789abcdep+76 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1.0000000000001p+0 0x1.234568p+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.0000000000001p+0 0x1.234568p+76 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.0000000000001p+0 0x1.234568p+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.0000000000001p+0 0x1.234568p+76 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L 0x1.234568p+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x1.234568p+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.234568p+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x1.234568p+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000001p+0L 0x1.234568p+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L 0x1.234568p+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L 0x1.234568p+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x1.234568p+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1.0000000000001p+0 0x1.234566p+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.0000000000001p+0 0x1.234566p+76 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.0000000000001p+0 0x1.234566p+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.0000000000001p+0 0x1.234566p+76 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L 0x1.234566p+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x1.234566p+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.234566p+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x1.234566p+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000001p+0L 0x1.234566p+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L 0x1.234566p+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L 0x1.234566p+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x1.234566p+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1.0000000000001p+0 0x1.23456789abcdfp+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.0000000000001p+0 0x1.23456789abcdfp+76 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.0000000000001p+0 0x1.23456789abcdfp+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.0000000000001p+0 0x1.23456789abcdfp+76 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789abcdfp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789abcdfp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789abcdfp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789abcdfp+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000001p+0L 0x1.23456789abcdfp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L 0x1.23456789abcdfp+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789abcdfp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789abcdfp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1.0000000000001p+0 0x1.23456789abcdep+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.0000000000001p+0 0x1.23456789abcdep+76 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.0000000000001p+0 0x1.23456789abcdep+76 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.0000000000001p+0 0x1.23456789abcdep+76 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789abcdep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789abcdep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789abcdep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789abcdep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000001p+0L 0x1.23456789abcdep+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L 0x1.23456789abcdep+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789abcdep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789abcdep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789abcdef0ep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789abcdef0ep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789abcdef0ep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789abcdef0ep+76L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000001p+0L 0x1.23456789abcdef0ep+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L 0x1.23456789abcdef0ep+76L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789abcdef0ep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789abcdef0ep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L 0x1.234568p+76L : 0x7.6d3e3fd0495d1748p+13444L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L 0x1.234568p+76L : 0x7.6d3e3fd0495d175p+13444L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L 0x1.234568p+76L : 0x7.6d3e3fd0495d1748p+13444L : inexact-ok
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L 0x1.234568p+76L : 0x7.6d3e3fd0495d175p+13444L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.234568p+76L : 0x7.6d3e3fd0495d1748p+13444L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.234568p+76L : 0x7.6d3e3fd0495d175p+13444L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.234568p+76L : 0x7.6d3e3fd0495d1748p+13444L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.234568p+76L : 0x7.6d3e3fd0495d175p+13444L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L 0x1.234568p+76L : 0x7.6d3e3fd0495d174e5c23d27d2b3p+13444L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L 0x1.234568p+76L : 0x7.6d3e3fd0495d174e5c23d27d2b3p+13444L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L 0x1.234568p+76L : 0x7.6d3e3fd0495d174e5c23d27d2b3p+13444L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L 0x1.234568p+76L : 0x7.6d3e3fd0495d174e5c23d27d2b34p+13444L : inexact-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L 0x1.234568p+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L 0x1.234568p+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L 0x1.234568p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L 0x1.234566p+76L : 0x7.6b632ba55419a11p+13444L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L 0x1.234566p+76L : 0x7.6b632ba55419a118p+13444L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L 0x1.234566p+76L : 0x7.6b632ba55419a11p+13444L : inexact-ok
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L 0x1.234566p+76L : 0x7.6b632ba55419a118p+13444L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.234566p+76L : 0x7.6b632ba55419a11p+13444L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.234566p+76L : 0x7.6b632ba55419a118p+13444L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.234566p+76L : 0x7.6b632ba55419a11p+13444L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.234566p+76L : 0x7.6b632ba55419a118p+13444L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L 0x1.234566p+76L : 0x7.6b632ba55419a1156b69e5bafb4cp+13444L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L 0x1.234566p+76L : 0x7.6b632ba55419a1156b69e5bafb4cp+13444L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L 0x1.234566p+76L : 0x7.6b632ba55419a1156b69e5bafb4cp+13444L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L 0x1.234566p+76L : 0x7.6b632ba55419a1156b69e5bafb5p+13444L : inexact-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L 0x1.234566p+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L 0x1.234566p+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L 0x1.234566p+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L 0x1.23456789abcdfp+76L : 0x7.6cd0697ceb557a7p+13444L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L 0x1.23456789abcdfp+76L : 0x7.6cd0697ceb557a7p+13444L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L 0x1.23456789abcdfp+76L : 0x7.6cd0697ceb557a7p+13444L : inexact-ok
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L 0x1.23456789abcdfp+76L : 0x7.6cd0697ceb557a78p+13444L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.23456789abcdfp+76L : 0x7.6cd0697ceb557a7p+13444L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.23456789abcdfp+76L : 0x7.6cd0697ceb557a7p+13444L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.23456789abcdfp+76L : 0x7.6cd0697ceb557a7p+13444L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.23456789abcdfp+76L : 0x7.6cd0697ceb557a78p+13444L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L 0x1.23456789abcdfp+76L : 0x7.6cd0697ceb557a700798d8825d58p+13444L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L 0x1.23456789abcdfp+76L : 0x7.6cd0697ceb557a700798d8825d5cp+13444L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L 0x1.23456789abcdfp+76L : 0x7.6cd0697ceb557a700798d8825d58p+13444L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L 0x1.23456789abcdfp+76L : 0x7.6cd0697ceb557a700798d8825d5cp+13444L : inexact-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L 0x1.23456789abcdfp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L 0x1.23456789abcdfp+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L 0x1.23456789abcdfp+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L 0x1.23456789abcdep+76L : 0x7.6cd0697cdc7bd998p+13444L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L 0x1.23456789abcdep+76L : 0x7.6cd0697cdc7bd9ap+13444L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L 0x1.23456789abcdep+76L : 0x7.6cd0697cdc7bd998p+13444L : inexact-ok
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L 0x1.23456789abcdep+76L : 0x7.6cd0697cdc7bd9ap+13444L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.23456789abcdep+76L : 0x7.6cd0697cdc7bd998p+13444L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.23456789abcdep+76L : 0x7.6cd0697cdc7bd9ap+13444L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.23456789abcdep+76L : 0x7.6cd0697cdc7bd998p+13444L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.23456789abcdep+76L : 0x7.6cd0697cdc7bd9ap+13444L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L 0x1.23456789abcdep+76L : 0x7.6cd0697cdc7bd99d0dd1072e5f1cp+13444L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L 0x1.23456789abcdep+76L : 0x7.6cd0697cdc7bd99d0dd1072e5f2p+13444L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L 0x1.23456789abcdep+76L : 0x7.6cd0697cdc7bd99d0dd1072e5f1cp+13444L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L 0x1.23456789abcdep+76L : 0x7.6cd0697cdc7bd99d0dd1072e5f2p+13444L : inexact-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L 0x1.23456789abcdep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L 0x1.23456789abcdep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L 0x1.23456789abcdep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L 0x1.23456789abcdef0ep+76L : 0x7.6cd0697cea74dec8p+13444L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L 0x1.23456789abcdef0ep+76L : 0x7.6cd0697cea74dedp+13444L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L 0x1.23456789abcdef0ep+76L : 0x7.6cd0697cea74dec8p+13444L : inexact-ok
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L 0x1.23456789abcdef0ep+76L : 0x7.6cd0697cea74dedp+13444L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.23456789abcdef0ep+76L : 0x7.6cd0697cea74dec8p+13444L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.23456789abcdef0ep+76L : 0x7.6cd0697cea74dedp+13444L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.23456789abcdef0ep+76L : 0x7.6cd0697cea74dec8p+13444L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L 0x1.23456789abcdef0ep+76L : 0x7.6cd0697cea74dedp+13444L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L 0x1.23456789abcdef0ep+76L : 0x7.6cd0697cea74decf909616edd858p+13444L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L 0x1.23456789abcdef0ep+76L : 0x7.6cd0697cea74decf909616edd85cp+13444L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L 0x1.23456789abcdef0ep+76L : 0x7.6cd0697cea74decf909616edd858p+13444L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L 0x1.23456789abcdef0ep+76L : 0x7.6cd0697cea74decf909616edd85cp+13444L : inexact-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L 0x1.23456789abcdef0ep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L 0x1.23456789abcdef0ep+76L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L 0x1.23456789abcdef0ep+76L : plus_infty : inexact-ok overflow errno-erange
+pow 0x1.0000000000000002p0 -0x1.23456789abcdef0ep76
+= pow downward flt-32 0x1.000002p+0f -0x1.234566p+76f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0x1.000002p+0f -0x1.234566p+76f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0x1.000002p+0f -0x1.234566p+76f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0x1.000002p+0f -0x1.234566p+76f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x1.000002p+0 -0x1.234566p+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.000002p+0 -0x1.234566p+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 -0x1.234566p+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.000002p+0 -0x1.234566p+76 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.000002p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.000002p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.000002p+0L -0x1.234566p+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.000002p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.000002p+0L -0x1.234566p+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000002p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000002p+0L -0x1.234566p+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000002p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000002p+0L -0x1.234566p+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 0x1.000002p+0f -0x1.234568p+76f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0x1.000002p+0f -0x1.234568p+76f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0x1.000002p+0f -0x1.234568p+76f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0x1.000002p+0f -0x1.234568p+76f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x1.000002p+0 -0x1.234568p+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.000002p+0 -0x1.234568p+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 -0x1.234568p+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.000002p+0 -0x1.234568p+76 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.000002p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.000002p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.000002p+0L -0x1.234568p+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.000002p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.000002p+0L -0x1.234568p+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000002p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000002p+0L -0x1.234568p+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000002p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000002p+0L -0x1.234568p+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x1.000002p+0 -0x1.23456789abcdep+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.000002p+0 -0x1.23456789abcdep+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 -0x1.23456789abcdep+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.000002p+0 -0x1.23456789abcdep+76 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.000002p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.000002p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.000002p+0L -0x1.23456789abcdep+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.000002p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.000002p+0L -0x1.23456789abcdep+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000002p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000002p+0L -0x1.23456789abcdep+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000002p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000002p+0L -0x1.23456789abcdep+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x1.000002p+0 -0x1.23456789abcdfp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.000002p+0 -0x1.23456789abcdfp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 -0x1.23456789abcdfp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.000002p+0 -0x1.23456789abcdfp+76 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.000002p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.000002p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.000002p+0L -0x1.23456789abcdfp+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.000002p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.000002p+0L -0x1.23456789abcdfp+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000002p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000002p+0L -0x1.23456789abcdfp+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000002p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000002p+0L -0x1.23456789abcdfp+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.000002p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.000002p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.000002p+0L -0x1.23456789abcdef0ep+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.000002p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.000002p+0L -0x1.23456789abcdef0ep+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000002p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000002p+0L -0x1.23456789abcdef0ep+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000002p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000002p+0L -0x1.23456789abcdef0ep+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 0x1p+0f -0x1.234566p+76f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f -0x1.234566p+76f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f -0x1.234566p+76f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f -0x1.234566p+76f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x1.234566p+76 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x1.234566p+76 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x1.234566p+76 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x1.234566p+76 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x1.234566p+76L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0x1p+0f -0x1.234568p+76f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f -0x1.234568p+76f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f -0x1.234568p+76f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f -0x1.234568p+76f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x1.234568p+76 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x1.234568p+76 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x1.234568p+76 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x1.234568p+76 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x1.234568p+76L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x1.23456789abcdep+76 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x1.23456789abcdep+76 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x1.23456789abcdep+76 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x1.23456789abcdep+76 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x1.23456789abcdep+76L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x1.23456789abcdfp+76 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x1.23456789abcdfp+76 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x1.23456789abcdfp+76 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x1.23456789abcdfp+76 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x1.23456789abcdfp+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x1.23456789abcdef0ep+76L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1.0000000000001p+0 -0x1.234566p+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.0000000000001p+0 -0x1.234566p+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.0000000000001p+0 -0x1.234566p+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.0000000000001p+0 -0x1.234566p+76 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L -0x1.234566p+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L -0x1.234566p+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000001p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000001p+0L -0x1.234566p+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L -0x1.234566p+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x1.0000000000001p+0 -0x1.234568p+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.0000000000001p+0 -0x1.234568p+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.0000000000001p+0 -0x1.234568p+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.0000000000001p+0 -0x1.234568p+76 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L -0x1.234568p+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L -0x1.234568p+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000001p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000001p+0L -0x1.234568p+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L -0x1.234568p+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x1.0000000000001p+0 -0x1.23456789abcdep+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.0000000000001p+0 -0x1.23456789abcdep+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.0000000000001p+0 -0x1.23456789abcdep+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.0000000000001p+0 -0x1.23456789abcdep+76 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L -0x1.23456789abcdep+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L -0x1.23456789abcdep+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000001p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000001p+0L -0x1.23456789abcdep+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L -0x1.23456789abcdep+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x1.0000000000001p+0 -0x1.23456789abcdfp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.0000000000001p+0 -0x1.23456789abcdfp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.0000000000001p+0 -0x1.23456789abcdfp+76 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.0000000000001p+0 -0x1.23456789abcdfp+76 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L -0x1.23456789abcdfp+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L -0x1.23456789abcdfp+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000001p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000001p+0L -0x1.23456789abcdfp+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L -0x1.23456789abcdfp+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L -0x1.23456789abcdef0ep+76L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L -0x1.23456789abcdef0ep+76L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000001p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000001p+0L -0x1.23456789abcdef0ep+76L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L -0x1.23456789abcdef0ep+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L -0x1.234566p+76L : 0x2.280f6312f34b6eb8p-13448L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L -0x1.234566p+76L : 0x2.280f6312f34b6eb8p-13448L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L -0x1.234566p+76L : 0x2.280f6312f34b6eb8p-13448L : inexact-ok
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L -0x1.234566p+76L : 0x2.280f6312f34b6ebcp-13448L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.234566p+76L : 0x2.280f6312f34b6eb8p-13448L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.234566p+76L : 0x2.280f6312f34b6eb8p-13448L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.234566p+76L : 0x2.280f6312f34b6eb8p-13448L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.234566p+76L : 0x2.280f6312f34b6ebcp-13448L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L -0x1.234566p+76L : 0x2.280f6312f34b6eb9e43b04ab4386p-13448L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L -0x1.234566p+76L : 0x2.280f6312f34b6eb9e43b04ab4386p-13448L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L -0x1.234566p+76L : 0x2.280f6312f34b6eb9e43b04ab4386p-13448L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L -0x1.234566p+76L : 0x2.280f6312f34b6eb9e43b04ab4388p-13448L : inexact-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L -0x1.234566p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L -0x1.234566p+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L -0x1.234568p+76L : 0x2.2785707939b3f0e8p-13448L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L -0x1.234568p+76L : 0x2.2785707939b3f0e8p-13448L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L -0x1.234568p+76L : 0x2.2785707939b3f0e8p-13448L : inexact-ok
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L -0x1.234568p+76L : 0x2.2785707939b3f0ecp-13448L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.234568p+76L : 0x2.2785707939b3f0e8p-13448L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.234568p+76L : 0x2.2785707939b3f0e8p-13448L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.234568p+76L : 0x2.2785707939b3f0e8p-13448L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.234568p+76L : 0x2.2785707939b3f0ecp-13448L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L -0x1.234568p+76L : 0x2.2785707939b3f0e9ae026e1371dap-13448L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L -0x1.234568p+76L : 0x2.2785707939b3f0e9ae026e1371dcp-13448L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L -0x1.234568p+76L : 0x2.2785707939b3f0e9ae026e1371dap-13448L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L -0x1.234568p+76L : 0x2.2785707939b3f0e9ae026e1371dcp-13448L : inexact-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L -0x1.234568p+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L -0x1.234568p+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L -0x1.23456789abcdep+76L : 0x2.27a54f019c0a046cp-13448L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L -0x1.23456789abcdep+76L : 0x2.27a54f019c0a046cp-13448L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L -0x1.23456789abcdep+76L : 0x2.27a54f019c0a046cp-13448L : inexact-ok
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L -0x1.23456789abcdep+76L : 0x2.27a54f019c0a047p-13448L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.23456789abcdep+76L : 0x2.27a54f019c0a046cp-13448L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.23456789abcdep+76L : 0x2.27a54f019c0a046cp-13448L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.23456789abcdep+76L : 0x2.27a54f019c0a046cp-13448L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.23456789abcdep+76L : 0x2.27a54f019c0a047p-13448L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L -0x1.23456789abcdep+76L : 0x2.27a54f019c0a046c7044704dd8ecp-13448L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L -0x1.23456789abcdep+76L : 0x2.27a54f019c0a046c7044704dd8ecp-13448L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L -0x1.23456789abcdep+76L : 0x2.27a54f019c0a046c7044704dd8ecp-13448L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L -0x1.23456789abcdep+76L : 0x2.27a54f019c0a046c7044704dd8eep-13448L : inexact-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L -0x1.23456789abcdep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L -0x1.23456789abcdep+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L -0x1.23456789abcdfp+76L : 0x2.27a54f0197bab9ccp-13448L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L -0x1.23456789abcdfp+76L : 0x2.27a54f0197bab9dp-13448L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L -0x1.23456789abcdfp+76L : 0x2.27a54f0197bab9ccp-13448L : inexact-ok
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L -0x1.23456789abcdfp+76L : 0x2.27a54f0197bab9dp-13448L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.23456789abcdfp+76L : 0x2.27a54f0197bab9ccp-13448L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.23456789abcdfp+76L : 0x2.27a54f0197bab9dp-13448L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.23456789abcdfp+76L : 0x2.27a54f0197bab9ccp-13448L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.23456789abcdfp+76L : 0x2.27a54f0197bab9dp-13448L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L -0x1.23456789abcdfp+76L : 0x2.27a54f0197bab9ce6d10ab8fa25ep-13448L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L -0x1.23456789abcdfp+76L : 0x2.27a54f0197bab9ce6d10ab8fa25ep-13448L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L -0x1.23456789abcdfp+76L : 0x2.27a54f0197bab9ce6d10ab8fa25ep-13448L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L -0x1.23456789abcdfp+76L : 0x2.27a54f0197bab9ce6d10ab8fa26p-13448L : inexact-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L -0x1.23456789abcdfp+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L -0x1.23456789abcdfp+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L -0x1.23456789abcdef0ep+76L : 0x2.27a54f0197fbe914p-13448L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L -0x1.23456789abcdef0ep+76L : 0x2.27a54f0197fbe918p-13448L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L -0x1.23456789abcdef0ep+76L : 0x2.27a54f0197fbe914p-13448L : inexact-ok
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L -0x1.23456789abcdef0ep+76L : 0x2.27a54f0197fbe918p-13448L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.23456789abcdef0ep+76L : 0x2.27a54f0197fbe914p-13448L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.23456789abcdef0ep+76L : 0x2.27a54f0197fbe918p-13448L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.23456789abcdef0ep+76L : 0x2.27a54f0197fbe914p-13448L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L -0x1.23456789abcdef0ep+76L : 0x2.27a54f0197fbe918p-13448L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L -0x1.23456789abcdef0ep+76L : 0x2.27a54f0197fbe9170300dd3a01eap-13448L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L -0x1.23456789abcdef0ep+76L : 0x2.27a54f0197fbe9170300dd3a01ecp-13448L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L -0x1.23456789abcdef0ep+76L : 0x2.27a54f0197fbe9170300dd3a01eap-13448L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L -0x1.23456789abcdef0ep+76L : 0x2.27a54f0197fbe9170300dd3a01ecp-13448L : inexact-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L -0x1.23456789abcdef0ep+76L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L -0x1.23456789abcdef0ep+76L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow 0x0.ffffffffffffffffffffffffffff8p0 0x1.23456789abcdef0123456789abcdp126
+= pow downward flt-32 0x1p+0f 0x4.8d15ap+124f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x4.8d15ap+124f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x4.8d15ap+124f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x4.8d15ap+124f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x4.8d15ap+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x4.8d15ap+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x4.8d15ap+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x4.8d15ap+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0x1p+0f 0x4.8d1598p+124f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x4.8d1598p+124f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x4.8d1598p+124f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x4.8d1598p+124f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x4.8d1598p+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x4.8d1598p+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x4.8d1598p+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x4.8d1598p+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 0x4.8d159e26af37cp+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x4.8d159e26af37cp+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x4.8d159e26af37cp+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x4.8d159e26af37cp+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 0x4.8d159e26af378p+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x4.8d159e26af378p+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x4.8d159e26af378p+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x4.8d159e26af378p+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x4.8d159e26af37bc048d159e26bp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x4.8d159e26af37bc048d159e26bp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x4.8d159e26af37bc048d159e26bp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x4.8d159e26af37bc048d159e26bp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x4.8d159e26af37bc048d159e26bp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x4.8d159e26af37bc048d159e26bp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x4.8d159e26af37bc048d159e26bp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x4.8d159e26af37bc048d159e26bp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x4.8d159e26af37bc048d159e26aep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x4.8d159e26af37bc048d159e26aep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x4.8d159e26af37bc048d159e26aep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x4.8d159e26af37bc048d159e26aep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x4.8d159e26af37bc048d159e26aep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x4.8d159e26af37bc048d159e26aep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x4.8d159e26af37bc048d159e26aep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x4.8d159e26af37bc048d159e26aep+124L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0xf.fffffp-4f 0x4.8d15ap+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0xf.fffffp-4f 0x4.8d15ap+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0xf.fffffp-4f 0x4.8d15ap+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0xf.fffffp-4f 0x4.8d15ap+124f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.fffffp-4 0x4.8d15ap+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.fffffp-4 0x4.8d15ap+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 0x4.8d15ap+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.fffffp-4 0x4.8d15ap+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x4.8d15ap+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d15ap+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffp-4L 0x4.8d15ap+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x4.8d15ap+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 0xf.fffffp-4f 0x4.8d1598p+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0xf.fffffp-4f 0x4.8d1598p+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0xf.fffffp-4f 0x4.8d1598p+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0xf.fffffp-4f 0x4.8d1598p+124f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.fffffp-4 0x4.8d1598p+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.fffffp-4 0x4.8d1598p+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 0x4.8d1598p+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.fffffp-4 0x4.8d1598p+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x4.8d1598p+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d1598p+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffp-4L 0x4.8d1598p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x4.8d1598p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.fffffp-4 0x4.8d159e26af37cp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.fffffp-4 0x4.8d159e26af37cp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 0x4.8d159e26af37cp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.fffffp-4 0x4.8d159e26af37cp+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af37cp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af37cp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37cp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37cp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.fffffp-4 0x4.8d159e26af378p+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.fffffp-4 0x4.8d159e26af378p+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 0x4.8d159e26af378p+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.fffffp-4 0x4.8d159e26af378p+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af378p+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af378p+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffp-4L 0x4.8d159e26af378p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af378p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af37bc08p+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af37bc08p+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bc08p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37bc08p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffp-4L 0x4.8d159e26af37bcp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffp-4L 0x4.8d159e26af37bcp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bcp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37bcp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.ffffffffffff8p-4 0x4.8d15ap+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 0x4.8d15ap+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 0x4.8d15ap+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.ffffffffffff8p-4 0x4.8d15ap+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d15ap+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d15ap+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d15ap+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d15ap+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.ffffffffffff8p-4 0x4.8d1598p+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 0x4.8d1598p+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 0x4.8d1598p+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.ffffffffffff8p-4 0x4.8d1598p+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d1598p+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d1598p+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d1598p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d1598p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.ffffffffffff8p-4 0x4.8d159e26af37cp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 0x4.8d159e26af37cp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 0x4.8d159e26af37cp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.ffffffffffff8p-4 0x4.8d159e26af37cp+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xf.ffffffffffff8p-4 0x4.8d159e26af378p+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 0x4.8d159e26af378p+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 0x4.8d159e26af378p+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xf.ffffffffffff8p-4 0x4.8d159e26af378p+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d15ap+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d15ap+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d15ap+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d15ap+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d1598p+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d1598p+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d1598p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d1598p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d159e26af37cp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d159e26af37cp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37cp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37cp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d159e26af378p+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d159e26af378p+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af378p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af378p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc08p+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc08p+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc08p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc08p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bcp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bcp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bcp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bcp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d15ap+124L : 0x2.2785707939b3a279674683b4b8dap-13448L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d15ap+124L : 0x2.2785707939b3a279674683b4b8dap-13448L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d15ap+124L : 0x2.2785707939b3a279674683b4b8dap-13448L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d15ap+124L : 0x2.2785707939b3a279674683b4b8dcp-13448L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d1598p+124L : 0x2.280f6312f34b2035ff83b8a6b996p-13448L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d1598p+124L : 0x2.280f6312f34b2035ff83b8a6b996p-13448L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d1598p+124L : 0x2.280f6312f34b2035ff83b8a6b996p-13448L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d1598p+124L : 0x2.280f6312f34b2035ff83b8a6b998p-13448L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x2.27a54f0197ba6b599e2182a3abfcp-13448L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x2.27a54f0197ba6b599e2182a3abfep-13448L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x2.27a54f0197ba6b599e2182a3abfcp-13448L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37cp+124L : 0x2.27a54f0197ba6b599e2182a3abfep-13448L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x2.27a54f019c09b5f7a15546c4fd3cp-13448L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x2.27a54f019c09b5f7a15546c4fd3ep-13448L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x2.27a54f019c09b5f7a15546c4fd3cp-13448L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af378p+124L : 0x2.27a54f019c09b5f7a15546c4fd3ep-13448L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x2.27a54f0197fed61a2a9418409b0ap-13448L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x2.27a54f0197fed61a2a9418409b0cp-13448L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x2.27a54f0197fed61a2a9418409b0ap-13448L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bc08p+124L : 0x2.27a54f0197fed61a2a9418409b0cp-13448L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x2.27a54f0197ff60037e547e4061cep-13448L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x2.27a54f0197ff60037e547e4061dp-13448L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x2.27a54f0197ff60037e547e4061cep-13448L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bcp+124L : 0x2.27a54f0197ff60037e547e4061dp-13448L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x2.27a54f0197ff118eaf65554afc3ep-13448L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x2.27a54f0197ff118eaf65554afc4p-13448L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x2.27a54f0197ff118eaf65554afc3ep-13448L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x2.27a54f0197ff118eaf65554afc4p-13448L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x2.27a54f0197ff118eaf65553d3f8p-13448L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x2.27a54f0197ff118eaf65553d3f82p-13448L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x2.27a54f0197ff118eaf65553d3f8p-13448L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x2.27a54f0197ff118eaf65553d3f82p-13448L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x2.27a54f0197ff118eaf65555fb9d6p-13448L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x2.27a54f0197ff118eaf65555fb9d6p-13448L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x2.27a54f0197ff118eaf65555fb9d6p-13448L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x2.27a54f0197ff118eaf65555fb9d8p-13448L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d15ap+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d15ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d15ap+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d1598p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d1598p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d1598p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37cp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37cp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37cp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af378p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af378p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af378p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc08p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc08p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc08p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bcp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bcp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26af34p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26bp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L 0x4.8d159e26af37bc048d159e26aep+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow 0x0.ffffffffffffffffffffffffffff8p0 -0x1.23456789abcdef0123456789abcdp126
+= pow downward flt-32 0x1p+0f -0x4.8d1598p+124f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f -0x4.8d1598p+124f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f -0x4.8d1598p+124f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f -0x4.8d1598p+124f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x4.8d1598p+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x4.8d1598p+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x4.8d1598p+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x4.8d1598p+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x4.8d1598p+124L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0x1p+0f -0x4.8d15ap+124f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f -0x4.8d15ap+124f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f -0x4.8d15ap+124f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f -0x4.8d15ap+124f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x4.8d15ap+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x4.8d15ap+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x4.8d15ap+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x4.8d15ap+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x4.8d15ap+124L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x4.8d159e26af378p+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x4.8d159e26af378p+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x4.8d159e26af378p+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x4.8d159e26af378p+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x4.8d159e26af378p+124L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x4.8d159e26af37cp+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x4.8d159e26af37cp+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x4.8d159e26af37cp+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x4.8d159e26af37cp+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x4.8d159e26af37cp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x4.8d159e26af37bcp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x4.8d159e26af37bc08p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x4.8d159e26af37bc048d159e26af34p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x4.8d159e26af37bc048d159e26af34p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x4.8d159e26af37bc048d159e26af34p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x4.8d159e26af37bc048d159e26af34p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x4.8d159e26af37bc048d159e26aep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x4.8d159e26af37bc048d159e26aep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x4.8d159e26af37bc048d159e26aep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x4.8d159e26af37bc048d159e26aep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x4.8d159e26af37bc048d159e26aep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x4.8d159e26af37bc048d159e26aep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x4.8d159e26af37bc048d159e26aep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x4.8d159e26af37bc048d159e26aep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x4.8d159e26af37bc048d159e26bp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x4.8d159e26af37bc048d159e26bp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x4.8d159e26af37bc048d159e26bp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x4.8d159e26af37bc048d159e26bp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x4.8d159e26af37bc048d159e26bp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x4.8d159e26af37bc048d159e26bp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x4.8d159e26af37bc048d159e26bp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x4.8d159e26af37bc048d159e26bp+124L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0xf.fffffp-4f -0x4.8d1598p+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0xf.fffffp-4f -0x4.8d1598p+124f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0xf.fffffp-4f -0x4.8d1598p+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0xf.fffffp-4f -0x4.8d1598p+124f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.fffffp-4 -0x4.8d1598p+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.fffffp-4 -0x4.8d1598p+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 -0x4.8d1598p+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.fffffp-4 -0x4.8d1598p+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x4.8d1598p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x4.8d1598p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 0xf.fffffp-4f -0x4.8d15ap+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0xf.fffffp-4f -0x4.8d15ap+124f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0xf.fffffp-4f -0x4.8d15ap+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0xf.fffffp-4f -0x4.8d15ap+124f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.fffffp-4 -0x4.8d15ap+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.fffffp-4 -0x4.8d15ap+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 -0x4.8d15ap+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.fffffp-4 -0x4.8d15ap+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x4.8d15ap+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x4.8d15ap+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.fffffp-4 -0x4.8d159e26af378p+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.fffffp-4 -0x4.8d159e26af378p+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 -0x4.8d159e26af378p+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.fffffp-4 -0x4.8d159e26af378p+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af378p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af378p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.fffffp-4 -0x4.8d159e26af37cp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.fffffp-4 -0x4.8d159e26af37cp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.fffffp-4 -0x4.8d159e26af37cp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.fffffp-4 -0x4.8d159e26af37cp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37cp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37cp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37bcp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37bcp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37bc08p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37bc08p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26af34p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26af34p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26af34p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26af34p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26aep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26aep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26aep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26aep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26bp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26bp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26bp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffp-4L -0x4.8d159e26af37bc048d159e26bp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.ffffffffffff8p-4 -0x4.8d1598p+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 -0x4.8d1598p+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 -0x4.8d1598p+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.ffffffffffff8p-4 -0x4.8d1598p+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d1598p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d1598p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.ffffffffffff8p-4 -0x4.8d15ap+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 -0x4.8d15ap+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 -0x4.8d15ap+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.ffffffffffff8p-4 -0x4.8d15ap+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d15ap+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d15ap+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.ffffffffffff8p-4 -0x4.8d159e26af378p+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 -0x4.8d159e26af378p+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 -0x4.8d159e26af378p+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.ffffffffffff8p-4 -0x4.8d159e26af378p+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af378p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af378p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xf.ffffffffffff8p-4 -0x4.8d159e26af37cp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p-4 -0x4.8d159e26af37cp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xf.ffffffffffff8p-4 -0x4.8d159e26af37cp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xf.ffffffffffff8p-4 -0x4.8d159e26af37cp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26af34p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26af34p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26af34p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26af34p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26aep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26aep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26aep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26aep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26bp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26bp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26bp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26bp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d1598p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d1598p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d15ap+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d15ap+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af378p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af378p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37cp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37cp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bcp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bcp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc08p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc08p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26af34p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26af34p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26af34p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26af34p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26aep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26aep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26aep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26aep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26bp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26bp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26bp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffp-4L -0x4.8d159e26af37bc048d159e26bp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d1598p+124L : 0x7.6b632ba5541aaf37ff8e0c6ce798p+13444L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d1598p+124L : 0x7.6b632ba5541aaf37ff8e0c6ce79cp+13444L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d1598p+124L : 0x7.6b632ba5541aaf37ff8e0c6ce798p+13444L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d1598p+124L : 0x7.6b632ba5541aaf37ff8e0c6ce79cp+13444L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d15ap+124L : 0x7.6d3e3fd0495e25b4833a1a8c28acp+13444L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d15ap+124L : 0x7.6d3e3fd0495e25b4833a1a8c28bp+13444L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d15ap+124L : 0x7.6d3e3fd0495e25b4833a1a8c28acp+13444L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d15ap+124L : 0x7.6d3e3fd0495e25b4833a1a8c28bp+13444L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af378p+124L : 0x7.6cd0697cdc7ce7f3956c750bedc8p+13444L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af378p+124L : 0x7.6cd0697cdc7ce7f3956c750bedc8p+13444L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af378p+124L : 0x7.6cd0697cdc7ce7f3956c750bedc8p+13444L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af378p+124L : 0x7.6cd0697cdc7ce7f3956c750bedccp+13444L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37cp+124L : 0x7.6cd0697ceb5688c68f34487ca7ecp+13444L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37cp+124L : 0x7.6cd0697ceb5688c68f34487ca7ecp+13444L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37cp+124L : 0x7.6cd0697ceb5688c68f34487ca7ecp+13444L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37cp+124L : 0x7.6cd0697ceb5688c68f34487ca7fp+13444L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : 0x7.6cd0697cea68eeb95f96ec852fecp+13444L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : 0x7.6cd0697cea68eeb95f96ec852ffp+13444L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : 0x7.6cd0697cea68eeb95f96ec852fecp+13444L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bcp+124L : 0x7.6cd0697cea68eeb95f96ec852ffp+13444L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : 0x7.6cd0697cea6ac9ed79f6271fa7p+13444L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : 0x7.6cd0697cea6ac9ed79f6271fa704p+13444L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : 0x7.6cd0697cea6ac9ed79f6271fa7p+13444L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bc08p+124L : 0x7.6cd0697cea6ac9ed79f6271fa704p+13444L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26af34p+124L : 0x7.6cd0697cea69fd0fe7325c5cb3ccp+13444L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26af34p+124L : 0x7.6cd0697cea69fd0fe7325c5cb3ccp+13444L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26af34p+124L : 0x7.6cd0697cea69fd0fe7325c5cb3ccp+13444L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26af34p+124L : 0x7.6cd0697cea69fd0fe7325c5cb3dp+13444L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0x7.6cd0697cea69fd0fe7325c153c74p+13444L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0x7.6cd0697cea69fd0fe7325c153c78p+13444L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0x7.6cd0697cea69fd0fe7325c153c74p+13444L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0x7.6cd0697cea69fd0fe7325c153c78p+13444L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0x7.6cd0697cea69fd0fe7325c8c097cp+13444L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0x7.6cd0697cea69fd0fe7325c8c097cp+13444L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0x7.6cd0697cea69fd0fe7325c8c097cp+13444L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0x7.6cd0697cea69fd0fe7325c8c098p+13444L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d1598p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d1598p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d1598p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d1598p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d15ap+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d15ap+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d15ap+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d15ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af378p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af378p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af378p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af378p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37cp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37cp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37cp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37cp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bcp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bcp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bcp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc08p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc08p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc08p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc08p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26af34p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26af34p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26af34p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26af34p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26aep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26aep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26aep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26aep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26aep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26bp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26bp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26bp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26bp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xf.fffffffffffffffffffffffffcp-4L -0x4.8d159e26af37bc048d159e26bp+124L : plus_infty : inexact-ok overflow errno-erange
+pow 0x1.0000000000000000000000000001p0 0x1.23456789abcdef0123456789abcdp125
+= pow downward flt-32 0x1.000002p+0f 0x2.468adp+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0x1.000002p+0f 0x2.468adp+124f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0x1.000002p+0f 0x2.468adp+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0x1.000002p+0f 0x2.468adp+124f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1.000002p+0 0x2.468adp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.000002p+0 0x2.468adp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 0x2.468adp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.000002p+0 0x2.468adp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.000002p+0L 0x2.468adp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.000002p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L 0x2.468adp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.000002p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.000002p+0L 0x2.468adp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L 0x2.468adp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.000002p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000002p+0L 0x2.468adp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L 0x2.468adp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x2.468adp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x2.468adp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 0x1.000002p+0f 0x2.468accp+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0x1.000002p+0f 0x2.468accp+124f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0x1.000002p+0f 0x2.468accp+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0x1.000002p+0f 0x2.468accp+124f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1.000002p+0 0x2.468accp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.000002p+0 0x2.468accp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 0x2.468accp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.000002p+0 0x2.468accp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.000002p+0L 0x2.468accp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.000002p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L 0x2.468accp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.000002p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.000002p+0L 0x2.468accp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L 0x2.468accp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.000002p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000002p+0L 0x2.468accp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L 0x2.468accp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x2.468accp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x2.468accp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1.000002p+0 0x2.468acf13579bep+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.000002p+0 0x2.468acf13579bep+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 0x2.468acf13579bep+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.000002p+0 0x2.468acf13579bep+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000002p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1.000002p+0 0x2.468acf13579bcp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.000002p+0 0x2.468acf13579bcp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 0x2.468acf13579bcp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.000002p+0 0x2.468acf13579bcp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000002p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bcp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bcp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000002p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bde04p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bde04p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.000002p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.000002p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000002p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bdep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bdep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000002p+0L 0x2.468acf13579bde02468acf13579ap+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x2.468acf13579bde02468acf13579ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L 0x2.468acf13579bde02468acf13579ap+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x2.468acf13579bde02468acf13579ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000002p+0L 0x2.468acf13579bde02468acf1358p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x2.468acf13579bde02468acf1358p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L 0x2.468acf13579bde02468acf1358p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x2.468acf13579bde02468acf1358p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bde02468acf1358p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bde02468acf1358p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bde02468acf1358p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bde02468acf1358p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000002p+0L 0x2.468acf13579bde02468acf1357p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000002p+0L 0x2.468acf13579bde02468acf1357p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L 0x2.468acf13579bde02468acf1357p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000002p+0L 0x2.468acf13579bde02468acf1357p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bde02468acf1357p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bde02468acf1357p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bde02468acf1357p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000002p+0L 0x2.468acf13579bde02468acf1357p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 0x1p+0f 0x2.468adp+124f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x2.468adp+124f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x2.468adp+124f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x2.468adp+124f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x2.468adp+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x2.468adp+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x2.468adp+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x2.468adp+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0x1p+0f 0x2.468accp+124f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f 0x2.468accp+124f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f 0x2.468accp+124f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f 0x2.468accp+124f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 0x2.468accp+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x2.468accp+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x2.468accp+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x2.468accp+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 0x2.468acf13579bep+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x2.468acf13579bep+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x2.468acf13579bep+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x2.468acf13579bep+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 0x2.468acf13579bcp+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 0x2.468acf13579bcp+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 0x2.468acf13579bcp+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 0x2.468acf13579bcp+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L 0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L 0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L 0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L 0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L 0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L 0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L 0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L 0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x2.468acf13579bde02468acf13579ap+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x2.468acf13579bde02468acf13579ap+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x2.468acf13579bde02468acf13579ap+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x2.468acf13579bde02468acf13579ap+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x2.468acf13579bde02468acf1358p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x2.468acf13579bde02468acf1358p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x2.468acf13579bde02468acf1358p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x2.468acf13579bde02468acf1358p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x2.468acf13579bde02468acf1358p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x2.468acf13579bde02468acf1358p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x2.468acf13579bde02468acf1358p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x2.468acf13579bde02468acf1358p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L 0x2.468acf13579bde02468acf1357p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L 0x2.468acf13579bde02468acf1357p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L 0x2.468acf13579bde02468acf1357p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L 0x2.468acf13579bde02468acf1357p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L 0x2.468acf13579bde02468acf1357p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L 0x2.468acf13579bde02468acf1357p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L 0x2.468acf13579bde02468acf1357p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L 0x2.468acf13579bde02468acf1357p+124L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1.0000000000001p+0 0x2.468adp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.0000000000001p+0 0x2.468adp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.0000000000001p+0 0x2.468adp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.0000000000001p+0 0x2.468adp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468adp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x2.468adp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468adp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468adp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000001p+0L 0x2.468adp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L 0x2.468adp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468adp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x2.468adp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1.0000000000001p+0 0x2.468accp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.0000000000001p+0 0x2.468accp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.0000000000001p+0 0x2.468accp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.0000000000001p+0 0x2.468accp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468accp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x2.468accp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468accp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468accp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000001p+0L 0x2.468accp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L 0x2.468accp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468accp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x2.468accp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1.0000000000001p+0 0x2.468acf13579bep+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.0000000000001p+0 0x2.468acf13579bep+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.0000000000001p+0 0x2.468acf13579bep+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.0000000000001p+0 0x2.468acf13579bep+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x1.0000000000001p+0 0x2.468acf13579bcp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x1.0000000000001p+0 0x2.468acf13579bcp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x1.0000000000001p+0 0x2.468acf13579bcp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x1.0000000000001p+0 0x2.468acf13579bcp+124 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bcp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bcp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bde04p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bde04p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bdep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bdep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf13579ap+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf13579ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf13579ap+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf13579ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf1358p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf1358p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf1358p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf1358p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf1358p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf1358p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf1358p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf1358p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf1357p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf1357p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf1357p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf1357p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf1357p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf1357p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf1357p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L 0x2.468acf13579bde02468acf1357p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468adp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468adp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468adp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468adp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000000002p+0L 0x2.468adp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L 0x2.468adp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468adp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468adp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468accp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468accp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468accp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468accp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000000002p+0L 0x2.468accp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L 0x2.468accp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468accp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468accp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bcp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bcp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bde04p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bde04p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bdep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bdep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf13579ap+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf13579ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf13579ap+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf13579ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf1358p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf1358p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf1358p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf1358p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf1358p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf1358p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf1358p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf1358p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf1357p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf1357p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf1357p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf1357p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf1357p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf1357p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf1357p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L 0x2.468acf13579bde02468acf1357p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468adp+124L : 0x7.6d3e3fd0495e25b4833a1a8b5dep+13444L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468adp+124L : 0x7.6d3e3fd0495e25b4833a1a8b5de4p+13444L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468adp+124L : 0x7.6d3e3fd0495e25b4833a1a8b5dep+13444L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468adp+124L : 0x7.6d3e3fd0495e25b4833a1a8b5de4p+13444L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468accp+124L : 0x7.6b632ba5541aaf37ff8e0c6c1dp+13444L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468accp+124L : 0x7.6b632ba5541aaf37ff8e0c6c1dp+13444L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468accp+124L : 0x7.6b632ba5541aaf37ff8e0c6c1dp+13444L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468accp+124L : 0x7.6b632ba5541aaf37ff8e0c6c1d04p+13444L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bep+124L : 0x7.6cd0697ceb5688c68f34487bdd2cp+13444L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bep+124L : 0x7.6cd0697ceb5688c68f34487bdd2cp+13444L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bep+124L : 0x7.6cd0697ceb5688c68f34487bdd2cp+13444L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bep+124L : 0x7.6cd0697ceb5688c68f34487bdd3p+13444L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bcp+124L : 0x7.6cd0697cdc7ce7f3956c750b2304p+13444L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bcp+124L : 0x7.6cd0697cdc7ce7f3956c750b2308p+13444L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bcp+124L : 0x7.6cd0697cdc7ce7f3956c750b2304p+13444L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bcp+124L : 0x7.6cd0697cdc7ce7f3956c750b2308p+13444L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bde04p+124L : 0x7.6cd0697cea6ac9ed79f6271edc4p+13444L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bde04p+124L : 0x7.6cd0697cea6ac9ed79f6271edc44p+13444L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bde04p+124L : 0x7.6cd0697cea6ac9ed79f6271edc4p+13444L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bde04p+124L : 0x7.6cd0697cea6ac9ed79f6271edc44p+13444L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bdep+124L : 0x7.6cd0697cea68eeb95f96ec84652cp+13444L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bdep+124L : 0x7.6cd0697cea68eeb95f96ec84652cp+13444L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bdep+124L : 0x7.6cd0697cea68eeb95f96ec84652cp+13444L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bdep+124L : 0x7.6cd0697cea68eeb95f96ec84653p+13444L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bde02468acf13579ap+124L : 0x7.6cd0697cea69fd0fe7325c5be908p+13444L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bde02468acf13579ap+124L : 0x7.6cd0697cea69fd0fe7325c5be90cp+13444L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bde02468acf13579ap+124L : 0x7.6cd0697cea69fd0fe7325c5be908p+13444L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bde02468acf13579ap+124L : 0x7.6cd0697cea69fd0fe7325c5be90cp+13444L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bde02468acf1358p+124L : 0x7.6cd0697cea69fd0fe7325c8b3ebcp+13444L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bde02468acf1358p+124L : 0x7.6cd0697cea69fd0fe7325c8b3ebcp+13444L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bde02468acf1358p+124L : 0x7.6cd0697cea69fd0fe7325c8b3ebcp+13444L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bde02468acf1358p+124L : 0x7.6cd0697cea69fd0fe7325c8b3ecp+13444L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bde02468acf1357p+124L : 0x7.6cd0697cea69fd0fe7325c1471b4p+13444L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bde02468acf1357p+124L : 0x7.6cd0697cea69fd0fe7325c1471b4p+13444L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bde02468acf1357p+124L : 0x7.6cd0697cea69fd0fe7325c1471b4p+13444L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L 0x2.468acf13579bde02468acf1357p+124L : 0x7.6cd0697cea69fd0fe7325c1471b8p+13444L : inexact-ok
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468adp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468adp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468adp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468adp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468adp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468accp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468accp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468accp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468accp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468accp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bcp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bcp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bcp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bcp+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde04p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde04p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde04p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde04p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bdep+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bdep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bdep+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bdep+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf13579ap+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf13579ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf13579ap+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf13579ap+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf1358p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf1358p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf1358p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf1358p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf1358p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf1358p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf1358p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf1358p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf1357p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf1357p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf1357p+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf1357p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf1357p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf1357p+124L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf1357p+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x1.000000000000000000000000008p+0L 0x2.468acf13579bde02468acf1357p+124L : plus_infty : inexact-ok overflow errno-erange
+pow 0x1.0000000000000000000000000001p0 -0x1.23456789abcdef0123456789abcdp125
+= pow downward flt-32 0x1.000002p+0f -0x2.468accp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0x1.000002p+0f -0x2.468accp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0x1.000002p+0f -0x2.468accp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0x1.000002p+0f -0x2.468accp+124f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x1.000002p+0 -0x2.468accp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.000002p+0 -0x2.468accp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 -0x2.468accp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.000002p+0 -0x2.468accp+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.000002p+0L -0x2.468accp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.000002p+0L -0x2.468accp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000002p+0L -0x2.468accp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000002p+0L -0x2.468accp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 0x1.000002p+0f -0x2.468adp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0x1.000002p+0f -0x2.468adp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0x1.000002p+0f -0x2.468adp+124f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0x1.000002p+0f -0x2.468adp+124f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x1.000002p+0 -0x2.468adp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.000002p+0 -0x2.468adp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 -0x2.468adp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.000002p+0 -0x2.468adp+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.000002p+0L -0x2.468adp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.000002p+0L -0x2.468adp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000002p+0L -0x2.468adp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000002p+0L -0x2.468adp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x1.000002p+0 -0x2.468acf13579bcp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.000002p+0 -0x2.468acf13579bcp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 -0x2.468acf13579bcp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.000002p+0 -0x2.468acf13579bcp+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bcp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bcp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000002p+0L -0x2.468acf13579bcp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bcp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x1.000002p+0 -0x2.468acf13579bep+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.000002p+0 -0x2.468acf13579bep+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.000002p+0 -0x2.468acf13579bep+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.000002p+0 -0x2.468acf13579bep+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bep+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bep+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000002p+0L -0x2.468acf13579bep+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bep+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bdep+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bdep+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000002p+0L -0x2.468acf13579bdep+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bdep+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.000002p+0L -0x2.468acf13579bde04p+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.000002p+0L -0x2.468acf13579bde04p+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000002p+0L -0x2.468acf13579bde04p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bde04p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000002p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000002p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000002p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000002p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000002p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000002p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000002p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000002p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000002p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 0x1p+0f -0x2.468accp+124f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f -0x2.468accp+124f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f -0x2.468accp+124f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f -0x2.468accp+124f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x2.468accp+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x2.468accp+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x2.468accp+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x2.468accp+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x2.468accp+124L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0x1p+0f -0x2.468adp+124f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1p+0f -0x2.468adp+124f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1p+0f -0x2.468adp+124f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1p+0f -0x2.468adp+124f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x2.468adp+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x2.468adp+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x2.468adp+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x2.468adp+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x2.468adp+124L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x2.468acf13579bcp+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x2.468acf13579bcp+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x2.468acf13579bcp+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x2.468acf13579bcp+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x2.468acf13579bcp+124L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1p+0 -0x2.468acf13579bep+124 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1p+0 -0x2.468acf13579bep+124 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1p+0 -0x2.468acf13579bep+124 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1p+0 -0x2.468acf13579bep+124 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x2.468acf13579bep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x2.468acf13579bdep+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1p+0L -0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1p+0L -0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1p+0L -0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1p+0L -0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1p+0L -0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1p+0L -0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1p+0L -0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1p+0L -0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x2.468acf13579bde04p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1.0000000000001p+0 -0x2.468accp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.0000000000001p+0 -0x2.468accp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.0000000000001p+0 -0x2.468accp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.0000000000001p+0 -0x2.468accp+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468accp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468accp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000001p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000001p+0L -0x2.468accp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468accp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x1.0000000000001p+0 -0x2.468adp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.0000000000001p+0 -0x2.468adp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.0000000000001p+0 -0x2.468adp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.0000000000001p+0 -0x2.468adp+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468adp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468adp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000001p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000001p+0L -0x2.468adp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468adp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x1.0000000000001p+0 -0x2.468acf13579bcp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.0000000000001p+0 -0x2.468acf13579bcp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.0000000000001p+0 -0x2.468acf13579bcp+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.0000000000001p+0 -0x2.468acf13579bcp+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bcp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bcp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bcp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bcp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x1.0000000000001p+0 -0x2.468acf13579bep+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x1.0000000000001p+0 -0x2.468acf13579bep+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x1.0000000000001p+0 -0x2.468acf13579bep+124 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x1.0000000000001p+0 -0x2.468acf13579bep+124 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bep+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bep+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bep+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bep+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bdep+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bdep+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bdep+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bdep+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.0000000000001p+0L -0x2.468acf13579bde04p+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.0000000000001p+0L -0x2.468acf13579bde04p+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bde04p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bde04p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000001p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468accp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468accp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000000002p+0L -0x2.468accp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468accp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468adp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468adp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000000002p+0L -0x2.468adp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468adp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468acf13579bcp+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468acf13579bcp+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bcp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bcp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468acf13579bep+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468acf13579bep+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bep+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bep+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468acf13579bdep+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468acf13579bdep+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bdep+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bdep+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x1.0000000000000002p+0L -0x2.468acf13579bde04p+124L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x1.0000000000000002p+0L -0x2.468acf13579bde04p+124L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bde04p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bde04p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.0000000000000002p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468accp+124L : 0x2.280f6312f34b2035ff83b8a6f478p-13448L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468accp+124L : 0x2.280f6312f34b2035ff83b8a6f47ap-13448L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468accp+124L : 0x2.280f6312f34b2035ff83b8a6f478p-13448L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468accp+124L : 0x2.280f6312f34b2035ff83b8a6f47ap-13448L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468adp+124L : 0x2.2785707939b3a279674683b4f3aep-13448L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468adp+124L : 0x2.2785707939b3a279674683b4f3aep-13448L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468adp+124L : 0x2.2785707939b3a279674683b4f3aep-13448L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468adp+124L : 0x2.2785707939b3a279674683b4f3bp-13448L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bcp+124L : 0x2.27a54f019c09b5f7a15546c53814p-13448L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bcp+124L : 0x2.27a54f019c09b5f7a15546c53814p-13448L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bcp+124L : 0x2.27a54f019c09b5f7a15546c53814p-13448L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bcp+124L : 0x2.27a54f019c09b5f7a15546c53816p-13448L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bep+124L : 0x2.27a54f0197ba6b599e2182a3e6d4p-13448L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bep+124L : 0x2.27a54f0197ba6b599e2182a3e6d6p-13448L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bep+124L : 0x2.27a54f0197ba6b599e2182a3e6d4p-13448L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bep+124L : 0x2.27a54f0197ba6b599e2182a3e6d6p-13448L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bdep+124L : 0x2.27a54f0197ff60037e547e409ca6p-13448L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bdep+124L : 0x2.27a54f0197ff60037e547e409ca8p-13448L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bdep+124L : 0x2.27a54f0197ff60037e547e409ca6p-13448L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bdep+124L : 0x2.27a54f0197ff60037e547e409ca8p-13448L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bde04p+124L : 0x2.27a54f0197fed61a2a941840d5e2p-13448L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bde04p+124L : 0x2.27a54f0197fed61a2a941840d5e4p-13448L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bde04p+124L : 0x2.27a54f0197fed61a2a941840d5e2p-13448L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bde04p+124L : 0x2.27a54f0197fed61a2a941840d5e4p-13448L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x2.27a54f0197ff118eaf65554b3716p-13448L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x2.27a54f0197ff118eaf65554b3718p-13448L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x2.27a54f0197ff118eaf65554b3716p-13448L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x2.27a54f0197ff118eaf65554b3718p-13448L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x2.27a54f0197ff118eaf65555ff4aep-13448L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x2.27a54f0197ff118eaf65555ff4aep-13448L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x2.27a54f0197ff118eaf65555ff4aep-13448L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x2.27a54f0197ff118eaf65555ff4bp-13448L : inexact-ok
+= pow downward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x2.27a54f0197ff118eaf65553d7a58p-13448L : inexact-ok
+= pow tonearest ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x2.27a54f0197ff118eaf65553d7a5ap-13448L : inexact-ok
+= pow towardzero ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x2.27a54f0197ff118eaf65553d7a58p-13448L : inexact-ok
+= pow upward ldbl-128 0x1.0000000000000000000000000001p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x2.27a54f0197ff118eaf65553d7a5ap-13448L : inexact-ok
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468accp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468accp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468accp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468adp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468adp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468adp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bcp+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bcp+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bcp+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bep+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bep+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bdep+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bdep+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bdep+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde04p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde04p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde04p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf13579ap+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf1357p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x1.000000000000000000000000008p+0L -0x2.468acf13579bde02468acf1358p+124L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow 1e4932 0.75
+= pow downward flt-32 0xf.fffffp+124f 0xcp-4f : 0xf.fffffp+92f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp+124f 0xcp-4f : 0xf.fffffp+92f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp+124f 0xcp-4f : 0xf.fffffp+92f : inexact-ok
+= pow upward flt-32 0xf.fffffp+124f 0xcp-4f : 0x1p+96f : inexact-ok
+= pow downward dbl-64 0xf.fffffp+124 0xcp-4 : 0xf.fffff3fffffep+92 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp+124 0xcp-4 : 0xf.fffff3fffffe8p+92 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp+124 0xcp-4 : 0xf.fffff3fffffep+92 : inexact-ok
+= pow upward dbl-64 0xf.fffffp+124 0xcp-4 : 0xf.fffff3fffffe8p+92 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7ffp+92L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe8p+92L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7ffp+92L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe8p+92L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7ffp+92L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe8p+92L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7ffp+92L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe8p+92L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa5f8p+92L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa6p+92L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa5f8p+92L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa6p+92L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa4p+92L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa4p+92L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa4p+92L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa8p+92L : inexact-ok
+= pow downward dbl-64 0xf.ffffffffffff8p+1020 0xcp-4 : 0xf.ffffffffffff8p+764 : inexact-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p+1020 0xcp-4 : 0xf.ffffffffffff8p+764 : inexact-ok
+= pow towardzero dbl-64 0xf.ffffffffffff8p+1020 0xcp-4 : 0xf.ffffffffffff8p+764 : inexact-ok
+= pow upward dbl-64 0xf.ffffffffffff8p+1020 0xcp-4 : 0x1p+768 : inexact-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffp+764L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffp+764L : inexact-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffp+764L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffp+764L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9fffffffffffff98p+764L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9fffffffffffffap+764L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9fffffffffffff98p+764L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9fffffffffffffap+764L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffffffffffffcp+764L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffffffffffffcp+764L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow downward ldbl-96-intel 0xd.72cb2a95c7ef6cdp+16380L 0xcp-4L : 0xe.0b9d894b9a782d7p+12284L : inexact-ok
+= pow tonearest ldbl-96-intel 0xd.72cb2a95c7ef6cdp+16380L 0xcp-4L : 0xe.0b9d894b9a782d8p+12284L : inexact-ok
+= pow towardzero ldbl-96-intel 0xd.72cb2a95c7ef6cdp+16380L 0xcp-4L : 0xe.0b9d894b9a782d7p+12284L : inexact-ok
+= pow upward ldbl-96-intel 0xd.72cb2a95c7ef6cdp+16380L 0xcp-4L : 0xe.0b9d894b9a782d8p+12284L : inexact-ok
+= pow downward ldbl-96-m68k 0xd.72cb2a95c7ef6cdp+16380L 0xcp-4L : 0xe.0b9d894b9a782d7p+12284L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xd.72cb2a95c7ef6cdp+16380L 0xcp-4L : 0xe.0b9d894b9a782d8p+12284L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xd.72cb2a95c7ef6cdp+16380L 0xcp-4L : 0xe.0b9d894b9a782d7p+12284L : inexact-ok
+= pow upward ldbl-96-m68k 0xd.72cb2a95c7ef6cdp+16380L 0xcp-4L : 0xe.0b9d894b9a782d8p+12284L : inexact-ok
+= pow downward ldbl-128 0xd.72cb2a95c7ef6cdp+16380L 0xcp-4L : 0xe.0b9d894b9a782d7f974f16449c28p+12284L : inexact-ok
+= pow tonearest ldbl-128 0xd.72cb2a95c7ef6cdp+16380L 0xcp-4L : 0xe.0b9d894b9a782d7f974f16449c28p+12284L : inexact-ok
+= pow towardzero ldbl-128 0xd.72cb2a95c7ef6cdp+16380L 0xcp-4L : 0xe.0b9d894b9a782d7f974f16449c28p+12284L : inexact-ok
+= pow upward ldbl-128 0xd.72cb2a95c7ef6cdp+16380L 0xcp-4L : 0xe.0b9d894b9a782d7f974f16449c3p+12284L : inexact-ok
+= pow downward ldbl-96-intel 0xd.72cb2a95c7ef6ccp+16380L 0xcp-4L : 0xe.0b9d894b9a782d7p+12284L : inexact-ok
+= pow tonearest ldbl-96-intel 0xd.72cb2a95c7ef6ccp+16380L 0xcp-4L : 0xe.0b9d894b9a782d7p+12284L : inexact-ok
+= pow towardzero ldbl-96-intel 0xd.72cb2a95c7ef6ccp+16380L 0xcp-4L : 0xe.0b9d894b9a782d7p+12284L : inexact-ok
+= pow upward ldbl-96-intel 0xd.72cb2a95c7ef6ccp+16380L 0xcp-4L : 0xe.0b9d894b9a782d8p+12284L : inexact-ok
+= pow downward ldbl-96-m68k 0xd.72cb2a95c7ef6ccp+16380L 0xcp-4L : 0xe.0b9d894b9a782d7p+12284L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xd.72cb2a95c7ef6ccp+16380L 0xcp-4L : 0xe.0b9d894b9a782d7p+12284L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xd.72cb2a95c7ef6ccp+16380L 0xcp-4L : 0xe.0b9d894b9a782d7p+12284L : inexact-ok
+= pow upward ldbl-96-m68k 0xd.72cb2a95c7ef6ccp+16380L 0xcp-4L : 0xe.0b9d894b9a782d8p+12284L : inexact-ok
+= pow downward ldbl-128 0xd.72cb2a95c7ef6ccp+16380L 0xcp-4L : 0xe.0b9d894b9a782d730ef2400ce76p+12284L : inexact-ok
+= pow tonearest ldbl-128 0xd.72cb2a95c7ef6ccp+16380L 0xcp-4L : 0xe.0b9d894b9a782d730ef2400ce768p+12284L : inexact-ok
+= pow towardzero ldbl-128 0xd.72cb2a95c7ef6ccp+16380L 0xcp-4L : 0xe.0b9d894b9a782d730ef2400ce76p+12284L : inexact-ok
+= pow upward ldbl-128 0xd.72cb2a95c7ef6ccp+16380L 0xcp-4L : 0xe.0b9d894b9a782d730ef2400ce768p+12284L : inexact-ok
+= pow downward ldbl-128 0xd.72cb2a95c7ef6cce81bf1e825ba8p+16380L 0xcp-4L : 0xe.0b9d894b9a782d7e6be49bb6cdb8p+12284L : inexact-ok
+= pow tonearest ldbl-128 0xd.72cb2a95c7ef6cce81bf1e825ba8p+16380L 0xcp-4L : 0xe.0b9d894b9a782d7e6be49bb6cdb8p+12284L : inexact-ok
+= pow towardzero ldbl-128 0xd.72cb2a95c7ef6cce81bf1e825ba8p+16380L 0xcp-4L : 0xe.0b9d894b9a782d7e6be49bb6cdb8p+12284L : inexact-ok
+= pow upward ldbl-128 0xd.72cb2a95c7ef6cce81bf1e825ba8p+16380L 0xcp-4L : 0xe.0b9d894b9a782d7e6be49bb6cdcp+12284L : inexact-ok
+= pow downward ldbl-128 0xd.72cb2a95c7ef6cce81bf1e825bap+16380L 0xcp-4L : 0xe.0b9d894b9a782d7e6be49bb6cdbp+12284L : inexact-ok
+= pow tonearest ldbl-128 0xd.72cb2a95c7ef6cce81bf1e825bap+16380L 0xcp-4L : 0xe.0b9d894b9a782d7e6be49bb6cdb8p+12284L : inexact-ok
+= pow towardzero ldbl-128 0xd.72cb2a95c7ef6cce81bf1e825bap+16380L 0xcp-4L : 0xe.0b9d894b9a782d7e6be49bb6cdbp+12284L : inexact-ok
+= pow upward ldbl-128 0xd.72cb2a95c7ef6cce81bf1e825bap+16380L 0xcp-4L : 0xe.0b9d894b9a782d7e6be49bb6cdb8p+12284L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcep+764L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffce8p+764L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcep+764L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffce8p+764L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcp+764L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcp+764L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcp+764L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffdp+764L : inexact-ok
+pow 1e4928 0.75
+= pow downward flt-32 0xf.fffffp+124f 0xcp-4f : 0xf.fffffp+92f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp+124f 0xcp-4f : 0xf.fffffp+92f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp+124f 0xcp-4f : 0xf.fffffp+92f : inexact-ok
+= pow upward flt-32 0xf.fffffp+124f 0xcp-4f : 0x1p+96f : inexact-ok
+= pow downward dbl-64 0xf.fffffp+124 0xcp-4 : 0xf.fffff3fffffep+92 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp+124 0xcp-4 : 0xf.fffff3fffffe8p+92 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp+124 0xcp-4 : 0xf.fffff3fffffep+92 : inexact-ok
+= pow upward dbl-64 0xf.fffffp+124 0xcp-4 : 0xf.fffff3fffffe8p+92 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7ffp+92L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe8p+92L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7ffp+92L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe8p+92L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7ffp+92L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe8p+92L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7ffp+92L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe8p+92L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa5f8p+92L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa6p+92L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa5f8p+92L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa6p+92L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa4p+92L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa4p+92L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa4p+92L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa8p+92L : inexact-ok
+= pow downward dbl-64 0xf.ffffffffffff8p+1020 0xcp-4 : 0xf.ffffffffffff8p+764 : inexact-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p+1020 0xcp-4 : 0xf.ffffffffffff8p+764 : inexact-ok
+= pow towardzero dbl-64 0xf.ffffffffffff8p+1020 0xcp-4 : 0xf.ffffffffffff8p+764 : inexact-ok
+= pow upward dbl-64 0xf.ffffffffffff8p+1020 0xcp-4 : 0x1p+768 : inexact-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffp+764L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffp+764L : inexact-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffp+764L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffp+764L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9fffffffffffff98p+764L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9fffffffffffffap+764L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9fffffffffffff98p+764L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9fffffffffffffap+764L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffffffffffffcp+764L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffffffffffffcp+764L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow downward ldbl-96-intel 0x5.822b137da851af4p+16368L 0xcp-4L : 0x3.987a3fd1d18736a8p+12276L : inexact-ok
+= pow tonearest ldbl-96-intel 0x5.822b137da851af4p+16368L 0xcp-4L : 0x3.987a3fd1d18736acp+12276L : inexact-ok
+= pow towardzero ldbl-96-intel 0x5.822b137da851af4p+16368L 0xcp-4L : 0x3.987a3fd1d18736a8p+12276L : inexact-ok
+= pow upward ldbl-96-intel 0x5.822b137da851af4p+16368L 0xcp-4L : 0x3.987a3fd1d18736acp+12276L : inexact-ok
+= pow downward ldbl-96-m68k 0x5.822b137da851af4p+16368L 0xcp-4L : 0x3.987a3fd1d18736a8p+12276L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x5.822b137da851af4p+16368L 0xcp-4L : 0x3.987a3fd1d18736acp+12276L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x5.822b137da851af4p+16368L 0xcp-4L : 0x3.987a3fd1d18736a8p+12276L : inexact-ok
+= pow upward ldbl-96-m68k 0x5.822b137da851af4p+16368L 0xcp-4L : 0x3.987a3fd1d18736acp+12276L : inexact-ok
+= pow downward ldbl-128 0x5.822b137da851af4p+16368L 0xcp-4L : 0x3.987a3fd1d18736aa1652034cbe46p+12276L : inexact-ok
+= pow tonearest ldbl-128 0x5.822b137da851af4p+16368L 0xcp-4L : 0x3.987a3fd1d18736aa1652034cbe48p+12276L : inexact-ok
+= pow towardzero ldbl-128 0x5.822b137da851af4p+16368L 0xcp-4L : 0x3.987a3fd1d18736aa1652034cbe46p+12276L : inexact-ok
+= pow upward ldbl-128 0x5.822b137da851af4p+16368L 0xcp-4L : 0x3.987a3fd1d18736aa1652034cbe48p+12276L : inexact-ok
+= pow downward ldbl-96-intel 0x5.822b137da851af38p+16368L 0xcp-4L : 0x3.987a3fd1d18736a4p+12276L : inexact-ok
+= pow tonearest ldbl-96-intel 0x5.822b137da851af38p+16368L 0xcp-4L : 0x3.987a3fd1d18736a8p+12276L : inexact-ok
+= pow towardzero ldbl-96-intel 0x5.822b137da851af38p+16368L 0xcp-4L : 0x3.987a3fd1d18736a4p+12276L : inexact-ok
+= pow upward ldbl-96-intel 0x5.822b137da851af38p+16368L 0xcp-4L : 0x3.987a3fd1d18736a8p+12276L : inexact-ok
+= pow downward ldbl-96-m68k 0x5.822b137da851af38p+16368L 0xcp-4L : 0x3.987a3fd1d18736a4p+12276L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x5.822b137da851af38p+16368L 0xcp-4L : 0x3.987a3fd1d18736a8p+12276L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x5.822b137da851af38p+16368L 0xcp-4L : 0x3.987a3fd1d18736a4p+12276L : inexact-ok
+= pow upward ldbl-96-m68k 0x5.822b137da851af38p+16368L 0xcp-4L : 0x3.987a3fd1d18736a8p+12276L : inexact-ok
+= pow downward ldbl-128 0x5.822b137da851af38p+16368L 0xcp-4L : 0x3.987a3fd1d18736a62bb5005b55c8p+12276L : inexact-ok
+= pow tonearest ldbl-128 0x5.822b137da851af38p+16368L 0xcp-4L : 0x3.987a3fd1d18736a62bb5005b55cap+12276L : inexact-ok
+= pow towardzero ldbl-128 0x5.822b137da851af38p+16368L 0xcp-4L : 0x3.987a3fd1d18736a62bb5005b55c8p+12276L : inexact-ok
+= pow upward ldbl-128 0x5.822b137da851af38p+16368L 0xcp-4L : 0x3.987a3fd1d18736a62bb5005b55cap+12276L : inexact-ok
+= pow downward ldbl-128 0x5.822b137da851af3ac7c7ef01602p+16368L 0xcp-4L : 0x3.987a3fd1d18736a7882a23c44d3ep+12276L : inexact-ok
+= pow tonearest ldbl-128 0x5.822b137da851af3ac7c7ef01602p+16368L 0xcp-4L : 0x3.987a3fd1d18736a7882a23c44d4p+12276L : inexact-ok
+= pow towardzero ldbl-128 0x5.822b137da851af3ac7c7ef01602p+16368L 0xcp-4L : 0x3.987a3fd1d18736a7882a23c44d3ep+12276L : inexact-ok
+= pow upward ldbl-128 0x5.822b137da851af3ac7c7ef01602p+16368L 0xcp-4L : 0x3.987a3fd1d18736a7882a23c44d4p+12276L : inexact-ok
+= pow downward ldbl-128 0x5.822b137da851af3ac7c7ef01601cp+16368L 0xcp-4L : 0x3.987a3fd1d18736a7882a23c44d3cp+12276L : inexact-ok
+= pow tonearest ldbl-128 0x5.822b137da851af3ac7c7ef01601cp+16368L 0xcp-4L : 0x3.987a3fd1d18736a7882a23c44d3ep+12276L : inexact-ok
+= pow towardzero ldbl-128 0x5.822b137da851af3ac7c7ef01601cp+16368L 0xcp-4L : 0x3.987a3fd1d18736a7882a23c44d3cp+12276L : inexact-ok
+= pow upward ldbl-128 0x5.822b137da851af3ac7c7ef01601cp+16368L 0xcp-4L : 0x3.987a3fd1d18736a7882a23c44d3ep+12276L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcep+764L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffce8p+764L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcep+764L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffce8p+764L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcp+764L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcp+764L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcp+764L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffdp+764L : inexact-ok
+pow 1e4924 0.75
+= pow downward flt-32 0xf.fffffp+124f 0xcp-4f : 0xf.fffffp+92f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp+124f 0xcp-4f : 0xf.fffffp+92f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp+124f 0xcp-4f : 0xf.fffffp+92f : inexact-ok
+= pow upward flt-32 0xf.fffffp+124f 0xcp-4f : 0x1p+96f : inexact-ok
+= pow downward dbl-64 0xf.fffffp+124 0xcp-4 : 0xf.fffff3fffffep+92 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp+124 0xcp-4 : 0xf.fffff3fffffe8p+92 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp+124 0xcp-4 : 0xf.fffff3fffffep+92 : inexact-ok
+= pow upward dbl-64 0xf.fffffp+124 0xcp-4 : 0xf.fffff3fffffe8p+92 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7ffp+92L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe8p+92L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7ffp+92L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe8p+92L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7ffp+92L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe8p+92L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7ffp+92L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe8p+92L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa5f8p+92L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa6p+92L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa5f8p+92L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa6p+92L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa4p+92L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa4p+92L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa4p+92L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa8p+92L : inexact-ok
+= pow downward dbl-64 0xf.ffffffffffff8p+1020 0xcp-4 : 0xf.ffffffffffff8p+764 : inexact-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p+1020 0xcp-4 : 0xf.ffffffffffff8p+764 : inexact-ok
+= pow towardzero dbl-64 0xf.ffffffffffff8p+1020 0xcp-4 : 0xf.ffffffffffff8p+764 : inexact-ok
+= pow upward dbl-64 0xf.ffffffffffff8p+1020 0xcp-4 : 0x1p+768 : inexact-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffp+764L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffp+764L : inexact-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffp+764L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffp+764L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9fffffffffffff98p+764L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9fffffffffffffap+764L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9fffffffffffff98p+764L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9fffffffffffffap+764L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffffffffffffcp+764L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffffffffffffcp+764L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow downward ldbl-96-intel 0x2.419adc280021754p+16356L 0xcp-4L : 0xe.ba46a73274d9f67p+12264L : inexact-ok
+= pow tonearest ldbl-96-intel 0x2.419adc280021754p+16356L 0xcp-4L : 0xe.ba46a73274d9f67p+12264L : inexact-ok
+= pow towardzero ldbl-96-intel 0x2.419adc280021754p+16356L 0xcp-4L : 0xe.ba46a73274d9f67p+12264L : inexact-ok
+= pow upward ldbl-96-intel 0x2.419adc280021754p+16356L 0xcp-4L : 0xe.ba46a73274d9f68p+12264L : inexact-ok
+= pow downward ldbl-96-m68k 0x2.419adc280021754p+16356L 0xcp-4L : 0xe.ba46a73274d9f67p+12264L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x2.419adc280021754p+16356L 0xcp-4L : 0xe.ba46a73274d9f67p+12264L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x2.419adc280021754p+16356L 0xcp-4L : 0xe.ba46a73274d9f67p+12264L : inexact-ok
+= pow upward ldbl-96-m68k 0x2.419adc280021754p+16356L 0xcp-4L : 0xe.ba46a73274d9f68p+12264L : inexact-ok
+= pow downward ldbl-128 0x2.419adc280021754p+16356L 0xcp-4L : 0xe.ba46a73274d9f67174a6137ed358p+12264L : inexact-ok
+= pow tonearest ldbl-128 0x2.419adc280021754p+16356L 0xcp-4L : 0xe.ba46a73274d9f67174a6137ed36p+12264L : inexact-ok
+= pow towardzero ldbl-128 0x2.419adc280021754p+16356L 0xcp-4L : 0xe.ba46a73274d9f67174a6137ed358p+12264L : inexact-ok
+= pow upward ldbl-128 0x2.419adc280021754p+16356L 0xcp-4L : 0xe.ba46a73274d9f67174a6137ed36p+12264L : inexact-ok
+= pow downward ldbl-96-intel 0x2.419adc280021753cp+16356L 0xcp-4L : 0xe.ba46a73274d9f65p+12264L : inexact-ok
+= pow tonearest ldbl-96-intel 0x2.419adc280021753cp+16356L 0xcp-4L : 0xe.ba46a73274d9f66p+12264L : inexact-ok
+= pow towardzero ldbl-96-intel 0x2.419adc280021753cp+16356L 0xcp-4L : 0xe.ba46a73274d9f65p+12264L : inexact-ok
+= pow upward ldbl-96-intel 0x2.419adc280021753cp+16356L 0xcp-4L : 0xe.ba46a73274d9f66p+12264L : inexact-ok
+= pow downward ldbl-96-m68k 0x2.419adc280021753cp+16356L 0xcp-4L : 0xe.ba46a73274d9f65p+12264L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x2.419adc280021753cp+16356L 0xcp-4L : 0xe.ba46a73274d9f66p+12264L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x2.419adc280021753cp+16356L 0xcp-4L : 0xe.ba46a73274d9f65p+12264L : inexact-ok
+= pow upward ldbl-96-m68k 0x2.419adc280021753cp+16356L 0xcp-4L : 0xe.ba46a73274d9f66p+12264L : inexact-ok
+= pow downward ldbl-128 0x2.419adc280021753cp+16356L 0xcp-4L : 0xe.ba46a73274d9f65ddf9504c7c8e8p+12264L : inexact-ok
+= pow tonearest ldbl-128 0x2.419adc280021753cp+16356L 0xcp-4L : 0xe.ba46a73274d9f65ddf9504c7c8e8p+12264L : inexact-ok
+= pow towardzero ldbl-128 0x2.419adc280021753cp+16356L 0xcp-4L : 0xe.ba46a73274d9f65ddf9504c7c8e8p+12264L : inexact-ok
+= pow upward ldbl-128 0x2.419adc280021753cp+16356L 0xcp-4L : 0xe.ba46a73274d9f65ddf9504c7c8fp+12264L : inexact-ok
+= pow downward ldbl-128 0x2.419adc280021753d599cd97ff2f2p+16356L 0xcp-4L : 0xe.ba46a73274d9f6647b8de25f71a8p+12264L : inexact-ok
+= pow tonearest ldbl-128 0x2.419adc280021753d599cd97ff2f2p+16356L 0xcp-4L : 0xe.ba46a73274d9f6647b8de25f71a8p+12264L : inexact-ok
+= pow towardzero ldbl-128 0x2.419adc280021753d599cd97ff2f2p+16356L 0xcp-4L : 0xe.ba46a73274d9f6647b8de25f71a8p+12264L : inexact-ok
+= pow upward ldbl-128 0x2.419adc280021753d599cd97ff2f2p+16356L 0xcp-4L : 0xe.ba46a73274d9f6647b8de25f71bp+12264L : inexact-ok
+= pow downward ldbl-128 0x2.419adc280021753d599cd97ff2fp+16356L 0xcp-4L : 0xe.ba46a73274d9f6647b8de25f71ap+12264L : inexact-ok
+= pow tonearest ldbl-128 0x2.419adc280021753d599cd97ff2fp+16356L 0xcp-4L : 0xe.ba46a73274d9f6647b8de25f71ap+12264L : inexact-ok
+= pow towardzero ldbl-128 0x2.419adc280021753d599cd97ff2fp+16356L 0xcp-4L : 0xe.ba46a73274d9f6647b8de25f71ap+12264L : inexact-ok
+= pow upward ldbl-128 0x2.419adc280021753d599cd97ff2fp+16356L 0xcp-4L : 0xe.ba46a73274d9f6647b8de25f71a8p+12264L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcep+764L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffce8p+764L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcep+764L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffce8p+764L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcp+764L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcp+764L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcp+764L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffdp+764L : inexact-ok
+pow 1e4920 0.75
+= pow downward flt-32 0xf.fffffp+124f 0xcp-4f : 0xf.fffffp+92f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp+124f 0xcp-4f : 0xf.fffffp+92f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp+124f 0xcp-4f : 0xf.fffffp+92f : inexact-ok
+= pow upward flt-32 0xf.fffffp+124f 0xcp-4f : 0x1p+96f : inexact-ok
+= pow downward dbl-64 0xf.fffffp+124 0xcp-4 : 0xf.fffff3fffffep+92 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp+124 0xcp-4 : 0xf.fffff3fffffe8p+92 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp+124 0xcp-4 : 0xf.fffff3fffffep+92 : inexact-ok
+= pow upward dbl-64 0xf.fffffp+124 0xcp-4 : 0xf.fffff3fffffe8p+92 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7ffp+92L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe8p+92L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7ffp+92L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe8p+92L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7ffp+92L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe8p+92L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7ffp+92L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe8p+92L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa5f8p+92L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa6p+92L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa5f8p+92L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa6p+92L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa4p+92L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa4p+92L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa4p+92L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp+124L 0xcp-4L : 0xf.fffff3fffffe7fffff5fffffa8p+92L : inexact-ok
+= pow downward dbl-64 0xf.ffffffffffff8p+1020 0xcp-4 : 0xf.ffffffffffff8p+764 : inexact-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p+1020 0xcp-4 : 0xf.ffffffffffff8p+764 : inexact-ok
+= pow towardzero dbl-64 0xf.ffffffffffff8p+1020 0xcp-4 : 0xf.ffffffffffff8p+764 : inexact-ok
+= pow upward dbl-64 0xf.ffffffffffff8p+1020 0xcp-4 : 0x1p+768 : inexact-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffp+764L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffp+764L : inexact-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffp+764L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffp+764L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9fffffffffffff98p+764L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9fffffffffffffap+764L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9fffffffffffff98p+764L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9fffffffffffffap+764L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffffffffffffcp+764L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffff9ffffffffffffcp+764L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xcp-4L : 0xf.ffffffffffffap+764L : inexact-ok
+= pow downward ldbl-96-intel 0xe.c96440ebeed5893p+16340L 0xcp-4L : 0x3.c530cea47806a578p+12256L : inexact-ok
+= pow tonearest ldbl-96-intel 0xe.c96440ebeed5893p+16340L 0xcp-4L : 0x3.c530cea47806a57cp+12256L : inexact-ok
+= pow towardzero ldbl-96-intel 0xe.c96440ebeed5893p+16340L 0xcp-4L : 0x3.c530cea47806a578p+12256L : inexact-ok
+= pow upward ldbl-96-intel 0xe.c96440ebeed5893p+16340L 0xcp-4L : 0x3.c530cea47806a57cp+12256L : inexact-ok
+= pow downward ldbl-96-m68k 0xe.c96440ebeed5893p+16340L 0xcp-4L : 0x3.c530cea47806a578p+12256L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xe.c96440ebeed5893p+16340L 0xcp-4L : 0x3.c530cea47806a57cp+12256L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xe.c96440ebeed5893p+16340L 0xcp-4L : 0x3.c530cea47806a578p+12256L : inexact-ok
+= pow upward ldbl-96-m68k 0xe.c96440ebeed5893p+16340L 0xcp-4L : 0x3.c530cea47806a57cp+12256L : inexact-ok
+= pow downward ldbl-128 0xe.c96440ebeed5893p+16340L 0xcp-4L : 0x3.c530cea47806a57be7c8faeb1b1p+12256L : inexact-ok
+= pow tonearest ldbl-128 0xe.c96440ebeed5893p+16340L 0xcp-4L : 0x3.c530cea47806a57be7c8faeb1b1p+12256L : inexact-ok
+= pow towardzero ldbl-128 0xe.c96440ebeed5893p+16340L 0xcp-4L : 0x3.c530cea47806a57be7c8faeb1b1p+12256L : inexact-ok
+= pow upward ldbl-128 0xe.c96440ebeed5893p+16340L 0xcp-4L : 0x3.c530cea47806a57be7c8faeb1b12p+12256L : inexact-ok
+= pow downward ldbl-96-intel 0xe.c96440ebeed5892p+16340L 0xcp-4L : 0x3.c530cea47806a578p+12256L : inexact-ok
+= pow tonearest ldbl-96-intel 0xe.c96440ebeed5892p+16340L 0xcp-4L : 0x3.c530cea47806a578p+12256L : inexact-ok
+= pow towardzero ldbl-96-intel 0xe.c96440ebeed5892p+16340L 0xcp-4L : 0x3.c530cea47806a578p+12256L : inexact-ok
+= pow upward ldbl-96-intel 0xe.c96440ebeed5892p+16340L 0xcp-4L : 0x3.c530cea47806a57cp+12256L : inexact-ok
+= pow downward ldbl-96-m68k 0xe.c96440ebeed5892p+16340L 0xcp-4L : 0x3.c530cea47806a578p+12256L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xe.c96440ebeed5892p+16340L 0xcp-4L : 0x3.c530cea47806a578p+12256L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xe.c96440ebeed5892p+16340L 0xcp-4L : 0x3.c530cea47806a578p+12256L : inexact-ok
+= pow upward ldbl-96-m68k 0xe.c96440ebeed5892p+16340L 0xcp-4L : 0x3.c530cea47806a57cp+12256L : inexact-ok
+= pow downward ldbl-128 0xe.c96440ebeed5892p+16340L 0xcp-4L : 0x3.c530cea47806a578d87e509e816cp+12256L : inexact-ok
+= pow tonearest ldbl-128 0xe.c96440ebeed5892p+16340L 0xcp-4L : 0x3.c530cea47806a578d87e509e816ep+12256L : inexact-ok
+= pow towardzero ldbl-128 0xe.c96440ebeed5892p+16340L 0xcp-4L : 0x3.c530cea47806a578d87e509e816cp+12256L : inexact-ok
+= pow upward ldbl-128 0xe.c96440ebeed5892p+16340L 0xcp-4L : 0x3.c530cea47806a578d87e509e816ep+12256L : inexact-ok
+= pow downward ldbl-128 0xe.c96440ebeed58925ede59e838e9p+16340L 0xcp-4L : 0x3.c530cea47806a579fac410fdcf44p+12256L : inexact-ok
+= pow tonearest ldbl-128 0xe.c96440ebeed58925ede59e838e9p+16340L 0xcp-4L : 0x3.c530cea47806a579fac410fdcf44p+12256L : inexact-ok
+= pow towardzero ldbl-128 0xe.c96440ebeed58925ede59e838e9p+16340L 0xcp-4L : 0x3.c530cea47806a579fac410fdcf44p+12256L : inexact-ok
+= pow upward ldbl-128 0xe.c96440ebeed58925ede59e838e9p+16340L 0xcp-4L : 0x3.c530cea47806a579fac410fdcf46p+12256L : inexact-ok
+= pow downward ldbl-128 0xe.c96440ebeed58925ede59e838e88p+16340L 0xcp-4L : 0x3.c530cea47806a579fac410fdcf42p+12256L : inexact-ok
+= pow tonearest ldbl-128 0xe.c96440ebeed58925ede59e838e88p+16340L 0xcp-4L : 0x3.c530cea47806a579fac410fdcf44p+12256L : inexact-ok
+= pow towardzero ldbl-128 0xe.c96440ebeed58925ede59e838e88p+16340L 0xcp-4L : 0x3.c530cea47806a579fac410fdcf42p+12256L : inexact-ok
+= pow upward ldbl-128 0xe.c96440ebeed58925ede59e838e88p+16340L 0xcp-4L : 0x3.c530cea47806a579fac410fdcf44p+12256L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcep+764L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffce8p+764L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcep+764L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffce8p+764L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcp+764L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcp+764L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffcffffffffffffcp+764L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xcp-4L : 0xf.ffffffffffffdp+764L : inexact-ok
+pow 10.0 4932.0
+= pow downward flt-32 0xap+0f 0x1.344p+12f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0xap+0f 0x1.344p+12f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0xap+0f 0x1.344p+12f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0xap+0f 0x1.344p+12f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xap+0 0x1.344p+12 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xap+0 0x1.344p+12 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xap+0 0x1.344p+12 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xap+0 0x1.344p+12 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xap+0L 0x1.344p+12L : 0xd.72cb2a95c7ef6ccp+16380L : inexact-ok
+= pow tonearest ldbl-96-intel 0xap+0L 0x1.344p+12L : 0xd.72cb2a95c7ef6cdp+16380L : inexact-ok
+= pow towardzero ldbl-96-intel 0xap+0L 0x1.344p+12L : 0xd.72cb2a95c7ef6ccp+16380L : inexact-ok
+= pow upward ldbl-96-intel 0xap+0L 0x1.344p+12L : 0xd.72cb2a95c7ef6cdp+16380L : inexact-ok
+= pow downward ldbl-96-m68k 0xap+0L 0x1.344p+12L : 0xd.72cb2a95c7ef6ccp+16380L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xap+0L 0x1.344p+12L : 0xd.72cb2a95c7ef6cdp+16380L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xap+0L 0x1.344p+12L : 0xd.72cb2a95c7ef6ccp+16380L : inexact-ok
+= pow upward ldbl-96-m68k 0xap+0L 0x1.344p+12L : 0xd.72cb2a95c7ef6cdp+16380L : inexact-ok
+= pow downward ldbl-128 0xap+0L 0x1.344p+12L : 0xd.72cb2a95c7ef6cce81bf1e825bap+16380L : inexact-ok
+= pow tonearest ldbl-128 0xap+0L 0x1.344p+12L : 0xd.72cb2a95c7ef6cce81bf1e825ba8p+16380L : inexact-ok
+= pow towardzero ldbl-128 0xap+0L 0x1.344p+12L : 0xd.72cb2a95c7ef6cce81bf1e825bap+16380L : inexact-ok
+= pow upward ldbl-128 0xap+0L 0x1.344p+12L : 0xd.72cb2a95c7ef6cce81bf1e825ba8p+16380L : inexact-ok
+= pow downward ldbl-128ibm 0xap+0L 0x1.344p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xap+0L 0x1.344p+12L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xap+0L 0x1.344p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xap+0L 0x1.344p+12L : plus_infty : inexact-ok overflow errno-erange
+pow 10.0 4931.0
+= pow downward flt-32 0xap+0f 0x1.343p+12f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0xap+0f 0x1.343p+12f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0xap+0f 0x1.343p+12f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0xap+0f 0x1.343p+12f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xap+0 0x1.343p+12 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xap+0 0x1.343p+12 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xap+0 0x1.343p+12 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xap+0 0x1.343p+12 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xap+0L 0x1.343p+12L : 0x1.584784422d97f146p+16380L : inexact-ok
+= pow tonearest ldbl-96-intel 0xap+0L 0x1.343p+12L : 0x1.584784422d97f148p+16380L : inexact-ok
+= pow towardzero ldbl-96-intel 0xap+0L 0x1.343p+12L : 0x1.584784422d97f146p+16380L : inexact-ok
+= pow upward ldbl-96-intel 0xap+0L 0x1.343p+12L : 0x1.584784422d97f148p+16380L : inexact-ok
+= pow downward ldbl-96-m68k 0xap+0L 0x1.343p+12L : 0x1.584784422d97f146p+16380L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xap+0L 0x1.343p+12L : 0x1.584784422d97f148p+16380L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xap+0L 0x1.343p+12L : 0x1.584784422d97f146p+16380L : inexact-ok
+= pow upward ldbl-96-m68k 0xap+0L 0x1.343p+12L : 0x1.584784422d97f148p+16380L : inexact-ok
+= pow downward ldbl-128 0xap+0L 0x1.343p+12L : 0x1.584784422d97f147d9c64fd9d5f7p+16380L : inexact-ok
+= pow tonearest ldbl-128 0xap+0L 0x1.343p+12L : 0x1.584784422d97f147d9c64fd9d5f7p+16380L : inexact-ok
+= pow towardzero ldbl-128 0xap+0L 0x1.343p+12L : 0x1.584784422d97f147d9c64fd9d5f7p+16380L : inexact-ok
+= pow upward ldbl-128 0xap+0L 0x1.343p+12L : 0x1.584784422d97f147d9c64fd9d5f8p+16380L : inexact-ok
+= pow downward ldbl-128ibm 0xap+0L 0x1.343p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xap+0L 0x1.343p+12L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xap+0L 0x1.343p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xap+0L 0x1.343p+12L : plus_infty : inexact-ok overflow errno-erange
+pow 10.0 4930.0
+= pow downward flt-32 0xap+0f 0x1.342p+12f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0xap+0f 0x1.342p+12f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0xap+0f 0x1.342p+12f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0xap+0f 0x1.342p+12f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xap+0 0x1.342p+12 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xap+0 0x1.342p+12 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xap+0 0x1.342p+12 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xap+0 0x1.342p+12 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xap+0L 0x1.342p+12L : 0x2.26d8d39d15bfe87p+16376L : inexact-ok
+= pow tonearest ldbl-96-intel 0xap+0L 0x1.342p+12L : 0x2.26d8d39d15bfe874p+16376L : inexact-ok
+= pow towardzero ldbl-96-intel 0xap+0L 0x1.342p+12L : 0x2.26d8d39d15bfe87p+16376L : inexact-ok
+= pow upward ldbl-96-intel 0xap+0L 0x1.342p+12L : 0x2.26d8d39d15bfe874p+16376L : inexact-ok
+= pow downward ldbl-96-m68k 0xap+0L 0x1.342p+12L : 0x2.26d8d39d15bfe87p+16376L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xap+0L 0x1.342p+12L : 0x2.26d8d39d15bfe874p+16376L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xap+0L 0x1.342p+12L : 0x2.26d8d39d15bfe87p+16376L : inexact-ok
+= pow upward ldbl-96-m68k 0xap+0L 0x1.342p+12L : 0x2.26d8d39d15bfe874p+16376L : inexact-ok
+= pow downward ldbl-128 0xap+0L 0x1.342p+12L : 0x2.26d8d39d15bfe872f60a195c898ap+16376L : inexact-ok
+= pow tonearest ldbl-128 0xap+0L 0x1.342p+12L : 0x2.26d8d39d15bfe872f60a195c898cp+16376L : inexact-ok
+= pow towardzero ldbl-128 0xap+0L 0x1.342p+12L : 0x2.26d8d39d15bfe872f60a195c898ap+16376L : inexact-ok
+= pow upward ldbl-128 0xap+0L 0x1.342p+12L : 0x2.26d8d39d15bfe872f60a195c898cp+16376L : inexact-ok
+= pow downward ldbl-128ibm 0xap+0L 0x1.342p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xap+0L 0x1.342p+12L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xap+0L 0x1.342p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xap+0L 0x1.342p+12L : plus_infty : inexact-ok overflow errno-erange
+pow 10.0 4929.0
+= pow downward flt-32 0xap+0f 0x1.341p+12f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0xap+0f 0x1.341p+12f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0xap+0f 0x1.341p+12f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0xap+0f 0x1.341p+12f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0xap+0 0x1.341p+12 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0xap+0 0x1.341p+12 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0xap+0 0x1.341p+12 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0xap+0 0x1.341p+12 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0xap+0L 0x1.341p+12L : 0x3.715aec2e89330d84p+16372L : inexact-ok
+= pow tonearest ldbl-96-intel 0xap+0L 0x1.341p+12L : 0x3.715aec2e89330d84p+16372L : inexact-ok
+= pow towardzero ldbl-96-intel 0xap+0L 0x1.341p+12L : 0x3.715aec2e89330d84p+16372L : inexact-ok
+= pow upward ldbl-96-intel 0xap+0L 0x1.341p+12L : 0x3.715aec2e89330d88p+16372L : inexact-ok
+= pow downward ldbl-96-m68k 0xap+0L 0x1.341p+12L : 0x3.715aec2e89330d84p+16372L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xap+0L 0x1.341p+12L : 0x3.715aec2e89330d84p+16372L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xap+0L 0x1.341p+12L : 0x3.715aec2e89330d84p+16372L : inexact-ok
+= pow upward ldbl-96-m68k 0xap+0L 0x1.341p+12L : 0x3.715aec2e89330d88p+16372L : inexact-ok
+= pow downward ldbl-128 0xap+0L 0x1.341p+12L : 0x3.715aec2e89330d84bcdcf560dc12p+16372L : inexact-ok
+= pow tonearest ldbl-128 0xap+0L 0x1.341p+12L : 0x3.715aec2e89330d84bcdcf560dc12p+16372L : inexact-ok
+= pow towardzero ldbl-128 0xap+0L 0x1.341p+12L : 0x3.715aec2e89330d84bcdcf560dc12p+16372L : inexact-ok
+= pow upward ldbl-128 0xap+0L 0x1.341p+12L : 0x3.715aec2e89330d84bcdcf560dc14p+16372L : inexact-ok
+= pow downward ldbl-128ibm 0xap+0L 0x1.341p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0xap+0L 0x1.341p+12L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0xap+0L 0x1.341p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0xap+0L 0x1.341p+12L : plus_infty : inexact-ok overflow errno-erange
+pow 10.0 -4931.0
+= pow downward flt-32 0xap+0f -0x1.343p+12f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0xap+0f -0x1.343p+12f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0xap+0f -0x1.343p+12f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0xap+0f -0x1.343p+12f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xap+0 -0x1.343p+12 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xap+0 -0x1.343p+12 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xap+0 -0x1.343p+12 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xap+0 -0x1.343p+12 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xap+0L -0x1.343p+12L : 0xb.e5b66ecbce0b7bp-16384L : inexact-ok
+= pow tonearest ldbl-96-intel 0xap+0L -0x1.343p+12L : 0xb.e5b66ecbce0b7b1p-16384L : inexact-ok
+= pow towardzero ldbl-96-intel 0xap+0L -0x1.343p+12L : 0xb.e5b66ecbce0b7bp-16384L : inexact-ok
+= pow upward ldbl-96-intel 0xap+0L -0x1.343p+12L : 0xb.e5b66ecbce0b7b1p-16384L : inexact-ok
+= pow downward ldbl-96-m68k 0xap+0L -0x1.343p+12L : 0xb.e5b66ecbce0b7bp-16384L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xap+0L -0x1.343p+12L : 0xb.e5b66ecbce0b7b1p-16384L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xap+0L -0x1.343p+12L : 0xb.e5b66ecbce0b7bp-16384L : inexact-ok
+= pow upward ldbl-96-m68k 0xap+0L -0x1.343p+12L : 0xb.e5b66ecbce0b7b1p-16384L : inexact-ok
+= pow downward ldbl-128 0xap+0L -0x1.343p+12L : 0xb.e5b66ecbce0b7b0e32e439358088p-16384L : inexact-ok
+= pow tonearest ldbl-128 0xap+0L -0x1.343p+12L : 0xb.e5b66ecbce0b7b0e32e43935809p-16384L : inexact-ok
+= pow towardzero ldbl-128 0xap+0L -0x1.343p+12L : 0xb.e5b66ecbce0b7b0e32e439358088p-16384L : inexact-ok
+= pow upward ldbl-128 0xap+0L -0x1.343p+12L : 0xb.e5b66ecbce0b7b0e32e43935809p-16384L : inexact-ok
+= pow downward ldbl-128ibm 0xap+0L -0x1.343p+12L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xap+0L -0x1.343p+12L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xap+0L -0x1.343p+12L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xap+0L -0x1.343p+12L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow 10.0 -4930.0
+= pow downward flt-32 0xap+0f -0x1.342p+12f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0xap+0f -0x1.342p+12f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0xap+0f -0x1.342p+12f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0xap+0f -0x1.342p+12f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xap+0 -0x1.342p+12 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xap+0 -0x1.342p+12 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xap+0 -0x1.342p+12 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xap+0 -0x1.342p+12 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xap+0L -0x1.342p+12L : 0x7.6f92053f60c72ce8p-16380L : inexact-ok
+= pow tonearest ldbl-96-intel 0xap+0L -0x1.342p+12L : 0x7.6f92053f60c72ce8p-16380L : inexact-ok
+= pow towardzero ldbl-96-intel 0xap+0L -0x1.342p+12L : 0x7.6f92053f60c72ce8p-16380L : inexact-ok
+= pow upward ldbl-96-intel 0xap+0L -0x1.342p+12L : 0x7.6f92053f60c72cfp-16380L : inexact-ok
+= pow downward ldbl-96-m68k 0xap+0L -0x1.342p+12L : 0x7.6f92053f60c72ce8p-16380L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xap+0L -0x1.342p+12L : 0x7.6f92053f60c72ce8p-16380L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xap+0L -0x1.342p+12L : 0x7.6f92053f60c72ce8p-16380L : inexact-ok
+= pow upward ldbl-96-m68k 0xap+0L -0x1.342p+12L : 0x7.6f92053f60c72cfp-16380L : inexact-ok
+= pow downward ldbl-128 0xap+0L -0x1.342p+12L : 0x7.6f92053f60c72ce8dfcea3c17058p-16380L : inexact-ok
+= pow tonearest ldbl-128 0xap+0L -0x1.342p+12L : 0x7.6f92053f60c72ce8dfcea3c17058p-16380L : inexact-ok
+= pow towardzero ldbl-128 0xap+0L -0x1.342p+12L : 0x7.6f92053f60c72ce8dfcea3c17058p-16380L : inexact-ok
+= pow upward ldbl-128 0xap+0L -0x1.342p+12L : 0x7.6f92053f60c72ce8dfcea3c1705cp-16380L : inexact-ok
+= pow downward ldbl-128ibm 0xap+0L -0x1.342p+12L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xap+0L -0x1.342p+12L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xap+0L -0x1.342p+12L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xap+0L -0x1.342p+12L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow 10.0 -4929.0
+= pow downward flt-32 0xap+0f -0x1.341p+12f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0xap+0f -0x1.341p+12f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0xap+0f -0x1.341p+12f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0xap+0f -0x1.341p+12f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0xap+0 -0x1.341p+12 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0xap+0 -0x1.341p+12 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0xap+0 -0x1.341p+12 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0xap+0 -0x1.341p+12 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0xap+0L -0x1.341p+12L : 0x4.a5bb43479c7c7c1p-16376L : inexact-ok
+= pow tonearest ldbl-96-intel 0xap+0L -0x1.341p+12L : 0x4.a5bb43479c7c7c1p-16376L : inexact-ok
+= pow towardzero ldbl-96-intel 0xap+0L -0x1.341p+12L : 0x4.a5bb43479c7c7c1p-16376L : inexact-ok
+= pow upward ldbl-96-intel 0xap+0L -0x1.341p+12L : 0x4.a5bb43479c7c7c18p-16376L : inexact-ok
+= pow downward ldbl-96-m68k 0xap+0L -0x1.341p+12L : 0x4.a5bb43479c7c7c1p-16376L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xap+0L -0x1.341p+12L : 0x4.a5bb43479c7c7c1p-16376L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xap+0L -0x1.341p+12L : 0x4.a5bb43479c7c7c1p-16376L : inexact-ok
+= pow upward ldbl-96-m68k 0xap+0L -0x1.341p+12L : 0x4.a5bb43479c7c7c18p-16376L : inexact-ok
+= pow downward ldbl-128 0xap+0L -0x1.341p+12L : 0x4.a5bb43479c7c7c118be12658e634p-16376L : inexact-ok
+= pow tonearest ldbl-128 0xap+0L -0x1.341p+12L : 0x4.a5bb43479c7c7c118be12658e638p-16376L : inexact-ok
+= pow towardzero ldbl-128 0xap+0L -0x1.341p+12L : 0x4.a5bb43479c7c7c118be12658e634p-16376L : inexact-ok
+= pow upward ldbl-128 0xap+0L -0x1.341p+12L : 0x4.a5bb43479c7c7c118be12658e638p-16376L : inexact-ok
+= pow downward ldbl-128ibm 0xap+0L -0x1.341p+12L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0xap+0L -0x1.341p+12L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0xap+0L -0x1.341p+12L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0xap+0L -0x1.341p+12L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow 1e27 182.0
+= pow downward flt-32 0x3.3b2e4p+88f 0xb.6p+4f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0x3.3b2e4p+88f 0xb.6p+4f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0x3.3b2e4p+88f 0xb.6p+4f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0x3.3b2e4p+88f 0xb.6p+4f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x3.3b2e4p+88 0xb.6p+4 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x3.3b2e4p+88 0xb.6p+4 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x3.3b2e4p+88 0xb.6p+4 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x3.3b2e4p+88 0xb.6p+4 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x3.3b2e4p+88L 0xb.6p+4L : 0xf.8150d73a5bad7b7p+16320L : inexact-ok
+= pow tonearest ldbl-96-intel 0x3.3b2e4p+88L 0xb.6p+4L : 0xf.8150d73a5bad7b7p+16320L : inexact-ok
+= pow towardzero ldbl-96-intel 0x3.3b2e4p+88L 0xb.6p+4L : 0xf.8150d73a5bad7b7p+16320L : inexact-ok
+= pow upward ldbl-96-intel 0x3.3b2e4p+88L 0xb.6p+4L : 0xf.8150d73a5bad7b8p+16320L : inexact-ok
+= pow downward ldbl-96-m68k 0x3.3b2e4p+88L 0xb.6p+4L : 0xf.8150d73a5bad7b7p+16320L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x3.3b2e4p+88L 0xb.6p+4L : 0xf.8150d73a5bad7b7p+16320L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x3.3b2e4p+88L 0xb.6p+4L : 0xf.8150d73a5bad7b7p+16320L : inexact-ok
+= pow upward ldbl-96-m68k 0x3.3b2e4p+88L 0xb.6p+4L : 0xf.8150d73a5bad7b8p+16320L : inexact-ok
+= pow downward ldbl-128 0x3.3b2e4p+88L 0xb.6p+4L : 0xf.8150d73a5bad7b733ee7fcf0356p+16320L : inexact-ok
+= pow tonearest ldbl-128 0x3.3b2e4p+88L 0xb.6p+4L : 0xf.8150d73a5bad7b733ee7fcf03568p+16320L : inexact-ok
+= pow towardzero ldbl-128 0x3.3b2e4p+88L 0xb.6p+4L : 0xf.8150d73a5bad7b733ee7fcf0356p+16320L : inexact-ok
+= pow upward ldbl-128 0x3.3b2e4p+88L 0xb.6p+4L : 0xf.8150d73a5bad7b733ee7fcf03568p+16320L : inexact-ok
+= pow downward ldbl-128ibm 0x3.3b2e4p+88L 0xb.6p+4L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x3.3b2e4p+88L 0xb.6p+4L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x3.3b2e4p+88L 0xb.6p+4L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x3.3b2e4p+88L 0xb.6p+4L : plus_infty : inexact-ok overflow errno-erange
+= pow downward flt-32 0x3.3b2e3cp+88f 0xb.6p+4f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow tonearest flt-32 0x3.3b2e3cp+88f 0xb.6p+4f : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero flt-32 0x3.3b2e3cp+88f 0xb.6p+4f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok
+= pow upward flt-32 0x3.3b2e3cp+88f 0xb.6p+4f : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x3.3b2e3cp+88 0xb.6p+4 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x3.3b2e3cp+88 0xb.6p+4 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x3.3b2e3cp+88 0xb.6p+4 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x3.3b2e3cp+88 0xb.6p+4 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x3.3b2e3cp+88L 0xb.6p+4L : 0xf.814331dd58d7f1fp+16320L : inexact-ok
+= pow tonearest ldbl-96-intel 0x3.3b2e3cp+88L 0xb.6p+4L : 0xf.814331dd58d7f2p+16320L : inexact-ok
+= pow towardzero ldbl-96-intel 0x3.3b2e3cp+88L 0xb.6p+4L : 0xf.814331dd58d7f1fp+16320L : inexact-ok
+= pow upward ldbl-96-intel 0x3.3b2e3cp+88L 0xb.6p+4L : 0xf.814331dd58d7f2p+16320L : inexact-ok
+= pow downward ldbl-96-m68k 0x3.3b2e3cp+88L 0xb.6p+4L : 0xf.814331dd58d7f1fp+16320L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x3.3b2e3cp+88L 0xb.6p+4L : 0xf.814331dd58d7f2p+16320L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x3.3b2e3cp+88L 0xb.6p+4L : 0xf.814331dd58d7f1fp+16320L : inexact-ok
+= pow upward ldbl-96-m68k 0x3.3b2e3cp+88L 0xb.6p+4L : 0xf.814331dd58d7f2p+16320L : inexact-ok
+= pow downward ldbl-128 0x3.3b2e3cp+88L 0xb.6p+4L : 0xf.814331dd58d7f1fe3091f957b8p+16320L : inexact-ok
+= pow tonearest ldbl-128 0x3.3b2e3cp+88L 0xb.6p+4L : 0xf.814331dd58d7f1fe3091f957b808p+16320L : inexact-ok
+= pow towardzero ldbl-128 0x3.3b2e3cp+88L 0xb.6p+4L : 0xf.814331dd58d7f1fe3091f957b8p+16320L : inexact-ok
+= pow upward ldbl-128 0x3.3b2e3cp+88L 0xb.6p+4L : 0xf.814331dd58d7f1fe3091f957b808p+16320L : inexact-ok
+= pow downward ldbl-128ibm 0x3.3b2e3cp+88L 0xb.6p+4L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x3.3b2e3cp+88L 0xb.6p+4L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x3.3b2e3cp+88L 0xb.6p+4L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x3.3b2e3cp+88L 0xb.6p+4L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x3.3b2e3c9fd0804p+88 0xb.6p+4 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x3.3b2e3c9fd0804p+88 0xb.6p+4 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x3.3b2e3c9fd0804p+88 0xb.6p+4 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x3.3b2e3c9fd0804p+88 0xb.6p+4 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x3.3b2e3c9fd0804p+88L 0xb.6p+4L : 0xf.814553110d16d49p+16320L : inexact-ok
+= pow tonearest ldbl-96-intel 0x3.3b2e3c9fd0804p+88L 0xb.6p+4L : 0xf.814553110d16d4ap+16320L : inexact-ok
+= pow towardzero ldbl-96-intel 0x3.3b2e3c9fd0804p+88L 0xb.6p+4L : 0xf.814553110d16d49p+16320L : inexact-ok
+= pow upward ldbl-96-intel 0x3.3b2e3c9fd0804p+88L 0xb.6p+4L : 0xf.814553110d16d4ap+16320L : inexact-ok
+= pow downward ldbl-96-m68k 0x3.3b2e3c9fd0804p+88L 0xb.6p+4L : 0xf.814553110d16d49p+16320L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x3.3b2e3c9fd0804p+88L 0xb.6p+4L : 0xf.814553110d16d4ap+16320L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x3.3b2e3c9fd0804p+88L 0xb.6p+4L : 0xf.814553110d16d49p+16320L : inexact-ok
+= pow upward ldbl-96-m68k 0x3.3b2e3c9fd0804p+88L 0xb.6p+4L : 0xf.814553110d16d4ap+16320L : inexact-ok
+= pow downward ldbl-128 0x3.3b2e3c9fd0804p+88L 0xb.6p+4L : 0xf.814553110d16d49f982ecfb4a598p+16320L : inexact-ok
+= pow tonearest ldbl-128 0x3.3b2e3c9fd0804p+88L 0xb.6p+4L : 0xf.814553110d16d49f982ecfb4a5ap+16320L : inexact-ok
+= pow towardzero ldbl-128 0x3.3b2e3c9fd0804p+88L 0xb.6p+4L : 0xf.814553110d16d49f982ecfb4a598p+16320L : inexact-ok
+= pow upward ldbl-128 0x3.3b2e3c9fd0804p+88L 0xb.6p+4L : 0xf.814553110d16d49f982ecfb4a5ap+16320L : inexact-ok
+= pow downward ldbl-128ibm 0x3.3b2e3c9fd0804p+88L 0xb.6p+4L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x3.3b2e3c9fd0804p+88L 0xb.6p+4L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x3.3b2e3c9fd0804p+88L 0xb.6p+4L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x3.3b2e3c9fd0804p+88L 0xb.6p+4L : plus_infty : inexact-ok overflow errno-erange
+= pow downward dbl-64 0x3.3b2e3c9fd0802p+88 0xb.6p+4 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow tonearest dbl-64 0x3.3b2e3c9fd0802p+88 0xb.6p+4 : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero dbl-64 0x3.3b2e3c9fd0802p+88 0xb.6p+4 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= pow upward dbl-64 0x3.3b2e3c9fd0802p+88 0xb.6p+4 : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x3.3b2e3c9fd0802p+88L 0xb.6p+4L : 0xf.814553110ca9a9dp+16320L : inexact-ok
+= pow tonearest ldbl-96-intel 0x3.3b2e3c9fd0802p+88L 0xb.6p+4L : 0xf.814553110ca9a9ep+16320L : inexact-ok
+= pow towardzero ldbl-96-intel 0x3.3b2e3c9fd0802p+88L 0xb.6p+4L : 0xf.814553110ca9a9dp+16320L : inexact-ok
+= pow upward ldbl-96-intel 0x3.3b2e3c9fd0802p+88L 0xb.6p+4L : 0xf.814553110ca9a9ep+16320L : inexact-ok
+= pow downward ldbl-96-m68k 0x3.3b2e3c9fd0802p+88L 0xb.6p+4L : 0xf.814553110ca9a9dp+16320L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x3.3b2e3c9fd0802p+88L 0xb.6p+4L : 0xf.814553110ca9a9ep+16320L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x3.3b2e3c9fd0802p+88L 0xb.6p+4L : 0xf.814553110ca9a9dp+16320L : inexact-ok
+= pow upward ldbl-96-m68k 0x3.3b2e3c9fd0802p+88L 0xb.6p+4L : 0xf.814553110ca9a9ep+16320L : inexact-ok
+= pow downward ldbl-128 0x3.3b2e3c9fd0802p+88L 0xb.6p+4L : 0xf.814553110ca9a9d85e5c85e60ad8p+16320L : inexact-ok
+= pow tonearest ldbl-128 0x3.3b2e3c9fd0802p+88L 0xb.6p+4L : 0xf.814553110ca9a9d85e5c85e60aep+16320L : inexact-ok
+= pow towardzero ldbl-128 0x3.3b2e3c9fd0802p+88L 0xb.6p+4L : 0xf.814553110ca9a9d85e5c85e60ad8p+16320L : inexact-ok
+= pow upward ldbl-128 0x3.3b2e3c9fd0802p+88L 0xb.6p+4L : 0xf.814553110ca9a9d85e5c85e60aep+16320L : inexact-ok
+= pow downward ldbl-128ibm 0x3.3b2e3c9fd0802p+88L 0xb.6p+4L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x3.3b2e3c9fd0802p+88L 0xb.6p+4L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x3.3b2e3c9fd0802p+88L 0xb.6p+4L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x3.3b2e3c9fd0802p+88L 0xb.6p+4L : plus_infty : inexact-ok overflow errno-erange
+= pow downward ldbl-96-intel 0x3.3b2e3c9fd0803ce8p+88L 0xb.6p+4L : 0xf.814553110d0c46bp+16320L : inexact-ok
+= pow tonearest ldbl-96-intel 0x3.3b2e3c9fd0803ce8p+88L 0xb.6p+4L : 0xf.814553110d0c46cp+16320L : inexact-ok
+= pow towardzero ldbl-96-intel 0x3.3b2e3c9fd0803ce8p+88L 0xb.6p+4L : 0xf.814553110d0c46bp+16320L : inexact-ok
+= pow upward ldbl-96-intel 0x3.3b2e3c9fd0803ce8p+88L 0xb.6p+4L : 0xf.814553110d0c46cp+16320L : inexact-ok
+= pow downward ldbl-96-m68k 0x3.3b2e3c9fd0803ce8p+88L 0xb.6p+4L : 0xf.814553110d0c46bp+16320L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x3.3b2e3c9fd0803ce8p+88L 0xb.6p+4L : 0xf.814553110d0c46cp+16320L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x3.3b2e3c9fd0803ce8p+88L 0xb.6p+4L : 0xf.814553110d0c46bp+16320L : inexact-ok
+= pow upward ldbl-96-m68k 0x3.3b2e3c9fd0803ce8p+88L 0xb.6p+4L : 0xf.814553110d0c46cp+16320L : inexact-ok
+= pow downward ldbl-128 0x3.3b2e3c9fd0803ce8p+88L 0xb.6p+4L : 0xf.814553110d0c46bcd557baf08b4p+16320L : inexact-ok
+= pow tonearest ldbl-128 0x3.3b2e3c9fd0803ce8p+88L 0xb.6p+4L : 0xf.814553110d0c46bcd557baf08b4p+16320L : inexact-ok
+= pow towardzero ldbl-128 0x3.3b2e3c9fd0803ce8p+88L 0xb.6p+4L : 0xf.814553110d0c46bcd557baf08b4p+16320L : inexact-ok
+= pow upward ldbl-128 0x3.3b2e3c9fd0803ce8p+88L 0xb.6p+4L : 0xf.814553110d0c46bcd557baf08b48p+16320L : inexact-ok
+= pow downward ldbl-128ibm 0x3.3b2e3c9fd0803ce8p+88L 0xb.6p+4L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow tonearest ldbl-128ibm 0x3.3b2e3c9fd0803ce8p+88L 0xb.6p+4L : plus_infty : inexact-ok overflow errno-erange
+= pow towardzero ldbl-128ibm 0x3.3b2e3c9fd0803ce8p+88L 0xb.6p+4L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok
+= pow upward ldbl-128ibm 0x3.3b2e3c9fd0803ce8p+88L 0xb.6p+4L : plus_infty : inexact-ok overflow errno-erange
+pow 1e27 -182.0
+= pow downward flt-32 0x3.3b2e4p+88f -0xb.6p+4f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0x3.3b2e4p+88f -0xb.6p+4f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0x3.3b2e4p+88f -0xb.6p+4f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0x3.3b2e4p+88f -0xb.6p+4f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x3.3b2e4p+88 -0xb.6p+4 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x3.3b2e4p+88 -0xb.6p+4 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x3.3b2e4p+88 -0xb.6p+4 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x3.3b2e4p+88 -0xb.6p+4 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x3.3b2e4p+88L -0xb.6p+4L : 0x1.082ba3a73f5378cap-16324L : inexact-ok
+= pow tonearest ldbl-96-intel 0x3.3b2e4p+88L -0xb.6p+4L : 0x1.082ba3a73f5378ccp-16324L : inexact-ok
+= pow towardzero ldbl-96-intel 0x3.3b2e4p+88L -0xb.6p+4L : 0x1.082ba3a73f5378cap-16324L : inexact-ok
+= pow upward ldbl-96-intel 0x3.3b2e4p+88L -0xb.6p+4L : 0x1.082ba3a73f5378ccp-16324L : inexact-ok
+= pow downward ldbl-96-m68k 0x3.3b2e4p+88L -0xb.6p+4L : 0x1.082ba3a73f5378cap-16324L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x3.3b2e4p+88L -0xb.6p+4L : 0x1.082ba3a73f5378ccp-16324L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x3.3b2e4p+88L -0xb.6p+4L : 0x1.082ba3a73f5378cap-16324L : inexact-ok
+= pow upward ldbl-96-m68k 0x3.3b2e4p+88L -0xb.6p+4L : 0x1.082ba3a73f5378ccp-16324L : inexact-ok
+= pow downward ldbl-128 0x3.3b2e4p+88L -0xb.6p+4L : 0x1.082ba3a73f5378cb5c00d333fc55p-16324L : inexact-ok
+= pow tonearest ldbl-128 0x3.3b2e4p+88L -0xb.6p+4L : 0x1.082ba3a73f5378cb5c00d333fc56p-16324L : inexact-ok
+= pow towardzero ldbl-128 0x3.3b2e4p+88L -0xb.6p+4L : 0x1.082ba3a73f5378cb5c00d333fc55p-16324L : inexact-ok
+= pow upward ldbl-128 0x3.3b2e4p+88L -0xb.6p+4L : 0x1.082ba3a73f5378cb5c00d333fc56p-16324L : inexact-ok
+= pow downward ldbl-128ibm 0x3.3b2e4p+88L -0xb.6p+4L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x3.3b2e4p+88L -0xb.6p+4L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x3.3b2e4p+88L -0xb.6p+4L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x3.3b2e4p+88L -0xb.6p+4L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward flt-32 0x3.3b2e3cp+88f -0xb.6p+4f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0x3.3b2e3cp+88f -0xb.6p+4f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0x3.3b2e3cp+88f -0xb.6p+4f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0x3.3b2e3cp+88f -0xb.6p+4f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x3.3b2e3cp+88 -0xb.6p+4 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x3.3b2e3cp+88 -0xb.6p+4 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x3.3b2e3cp+88 -0xb.6p+4 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x3.3b2e3cp+88 -0xb.6p+4 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x3.3b2e3cp+88L -0xb.6p+4L : 0x1.082c8c269868b884p-16324L : inexact-ok
+= pow tonearest ldbl-96-intel 0x3.3b2e3cp+88L -0xb.6p+4L : 0x1.082c8c269868b886p-16324L : inexact-ok
+= pow towardzero ldbl-96-intel 0x3.3b2e3cp+88L -0xb.6p+4L : 0x1.082c8c269868b884p-16324L : inexact-ok
+= pow upward ldbl-96-intel 0x3.3b2e3cp+88L -0xb.6p+4L : 0x1.082c8c269868b886p-16324L : inexact-ok
+= pow downward ldbl-96-m68k 0x3.3b2e3cp+88L -0xb.6p+4L : 0x1.082c8c269868b884p-16324L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x3.3b2e3cp+88L -0xb.6p+4L : 0x1.082c8c269868b886p-16324L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x3.3b2e3cp+88L -0xb.6p+4L : 0x1.082c8c269868b884p-16324L : inexact-ok
+= pow upward ldbl-96-m68k 0x3.3b2e3cp+88L -0xb.6p+4L : 0x1.082c8c269868b886p-16324L : inexact-ok
+= pow downward ldbl-128 0x3.3b2e3cp+88L -0xb.6p+4L : 0x1.082c8c269868b8855031b7dcc992p-16324L : inexact-ok
+= pow tonearest ldbl-128 0x3.3b2e3cp+88L -0xb.6p+4L : 0x1.082c8c269868b8855031b7dcc993p-16324L : inexact-ok
+= pow towardzero ldbl-128 0x3.3b2e3cp+88L -0xb.6p+4L : 0x1.082c8c269868b8855031b7dcc992p-16324L : inexact-ok
+= pow upward ldbl-128 0x3.3b2e3cp+88L -0xb.6p+4L : 0x1.082c8c269868b8855031b7dcc993p-16324L : inexact-ok
+= pow downward ldbl-128ibm 0x3.3b2e3cp+88L -0xb.6p+4L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x3.3b2e3cp+88L -0xb.6p+4L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x3.3b2e3cp+88L -0xb.6p+4L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x3.3b2e3cp+88L -0xb.6p+4L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x3.3b2e3c9fd0804p+88 -0xb.6p+4 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x3.3b2e3c9fd0804p+88 -0xb.6p+4 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x3.3b2e3c9fd0804p+88 -0xb.6p+4 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x3.3b2e3c9fd0804p+88 -0xb.6p+4 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x3.3b2e3c9fd0804p+88L -0xb.6p+4L : 0x1.082c67dd6dca757ep-16324L : inexact-ok
+= pow tonearest ldbl-96-intel 0x3.3b2e3c9fd0804p+88L -0xb.6p+4L : 0x1.082c67dd6dca757ep-16324L : inexact-ok
+= pow towardzero ldbl-96-intel 0x3.3b2e3c9fd0804p+88L -0xb.6p+4L : 0x1.082c67dd6dca757ep-16324L : inexact-ok
+= pow upward ldbl-96-intel 0x3.3b2e3c9fd0804p+88L -0xb.6p+4L : 0x1.082c67dd6dca758p-16324L : inexact-ok
+= pow downward ldbl-96-m68k 0x3.3b2e3c9fd0804p+88L -0xb.6p+4L : 0x1.082c67dd6dca757ep-16324L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x3.3b2e3c9fd0804p+88L -0xb.6p+4L : 0x1.082c67dd6dca757ep-16324L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x3.3b2e3c9fd0804p+88L -0xb.6p+4L : 0x1.082c67dd6dca757ep-16324L : inexact-ok
+= pow upward ldbl-96-m68k 0x3.3b2e3c9fd0804p+88L -0xb.6p+4L : 0x1.082c67dd6dca758p-16324L : inexact-ok
+= pow downward ldbl-128 0x3.3b2e3c9fd0804p+88L -0xb.6p+4L : 0x1.082c67dd6dca757ea9a3d6b23512p-16324L : inexact-ok
+= pow tonearest ldbl-128 0x3.3b2e3c9fd0804p+88L -0xb.6p+4L : 0x1.082c67dd6dca757ea9a3d6b23513p-16324L : inexact-ok
+= pow towardzero ldbl-128 0x3.3b2e3c9fd0804p+88L -0xb.6p+4L : 0x1.082c67dd6dca757ea9a3d6b23512p-16324L : inexact-ok
+= pow upward ldbl-128 0x3.3b2e3c9fd0804p+88L -0xb.6p+4L : 0x1.082c67dd6dca757ea9a3d6b23513p-16324L : inexact-ok
+= pow downward ldbl-128ibm 0x3.3b2e3c9fd0804p+88L -0xb.6p+4L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x3.3b2e3c9fd0804p+88L -0xb.6p+4L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x3.3b2e3c9fd0804p+88L -0xb.6p+4L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x3.3b2e3c9fd0804p+88L -0xb.6p+4L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x3.3b2e3c9fd0802p+88 -0xb.6p+4 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x3.3b2e3c9fd0802p+88 -0xb.6p+4 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x3.3b2e3c9fd0802p+88 -0xb.6p+4 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x3.3b2e3c9fd0802p+88 -0xb.6p+4 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x3.3b2e3c9fd0802p+88L -0xb.6p+4L : 0x1.082c67dd6dd1b97ap-16324L : inexact-ok
+= pow tonearest ldbl-96-intel 0x3.3b2e3c9fd0802p+88L -0xb.6p+4L : 0x1.082c67dd6dd1b97cp-16324L : inexact-ok
+= pow towardzero ldbl-96-intel 0x3.3b2e3c9fd0802p+88L -0xb.6p+4L : 0x1.082c67dd6dd1b97ap-16324L : inexact-ok
+= pow upward ldbl-96-intel 0x3.3b2e3c9fd0802p+88L -0xb.6p+4L : 0x1.082c67dd6dd1b97cp-16324L : inexact-ok
+= pow downward ldbl-96-m68k 0x3.3b2e3c9fd0802p+88L -0xb.6p+4L : 0x1.082c67dd6dd1b97ap-16324L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x3.3b2e3c9fd0802p+88L -0xb.6p+4L : 0x1.082c67dd6dd1b97cp-16324L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x3.3b2e3c9fd0802p+88L -0xb.6p+4L : 0x1.082c67dd6dd1b97ap-16324L : inexact-ok
+= pow upward ldbl-96-m68k 0x3.3b2e3c9fd0802p+88L -0xb.6p+4L : 0x1.082c67dd6dd1b97cp-16324L : inexact-ok
+= pow downward ldbl-128 0x3.3b2e3c9fd0802p+88L -0xb.6p+4L : 0x1.082c67dd6dd1b97ba866a31b29bcp-16324L : inexact-ok
+= pow tonearest ldbl-128 0x3.3b2e3c9fd0802p+88L -0xb.6p+4L : 0x1.082c67dd6dd1b97ba866a31b29bdp-16324L : inexact-ok
+= pow towardzero ldbl-128 0x3.3b2e3c9fd0802p+88L -0xb.6p+4L : 0x1.082c67dd6dd1b97ba866a31b29bcp-16324L : inexact-ok
+= pow upward ldbl-128 0x3.3b2e3c9fd0802p+88L -0xb.6p+4L : 0x1.082c67dd6dd1b97ba866a31b29bdp-16324L : inexact-ok
+= pow downward ldbl-128ibm 0x3.3b2e3c9fd0802p+88L -0xb.6p+4L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x3.3b2e3c9fd0802p+88L -0xb.6p+4L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x3.3b2e3c9fd0802p+88L -0xb.6p+4L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x3.3b2e3c9fd0802p+88L -0xb.6p+4L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x3.3b2e3c9fd0803ce8p+88L -0xb.6p+4L : 0x1.082c67dd6dcb295p-16324L : inexact-ok
+= pow tonearest ldbl-96-intel 0x3.3b2e3c9fd0803ce8p+88L -0xb.6p+4L : 0x1.082c67dd6dcb2952p-16324L : inexact-ok
+= pow towardzero ldbl-96-intel 0x3.3b2e3c9fd0803ce8p+88L -0xb.6p+4L : 0x1.082c67dd6dcb295p-16324L : inexact-ok
+= pow upward ldbl-96-intel 0x3.3b2e3c9fd0803ce8p+88L -0xb.6p+4L : 0x1.082c67dd6dcb2952p-16324L : inexact-ok
+= pow downward ldbl-96-m68k 0x3.3b2e3c9fd0803ce8p+88L -0xb.6p+4L : 0x1.082c67dd6dcb295p-16324L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x3.3b2e3c9fd0803ce8p+88L -0xb.6p+4L : 0x1.082c67dd6dcb2952p-16324L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x3.3b2e3c9fd0803ce8p+88L -0xb.6p+4L : 0x1.082c67dd6dcb295p-16324L : inexact-ok
+= pow upward ldbl-96-m68k 0x3.3b2e3c9fd0803ce8p+88L -0xb.6p+4L : 0x1.082c67dd6dcb2952p-16324L : inexact-ok
+= pow downward ldbl-128 0x3.3b2e3c9fd0803ce8p+88L -0xb.6p+4L : 0x1.082c67dd6dcb29515f452bf31bbdp-16324L : inexact-ok
+= pow tonearest ldbl-128 0x3.3b2e3c9fd0803ce8p+88L -0xb.6p+4L : 0x1.082c67dd6dcb29515f452bf31bbep-16324L : inexact-ok
+= pow towardzero ldbl-128 0x3.3b2e3c9fd0803ce8p+88L -0xb.6p+4L : 0x1.082c67dd6dcb29515f452bf31bbdp-16324L : inexact-ok
+= pow upward ldbl-128 0x3.3b2e3c9fd0803ce8p+88L -0xb.6p+4L : 0x1.082c67dd6dcb29515f452bf31bbep-16324L : inexact-ok
+= pow downward ldbl-128ibm 0x3.3b2e3c9fd0803ce8p+88L -0xb.6p+4L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x3.3b2e3c9fd0803ce8p+88L -0xb.6p+4L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x3.3b2e3c9fd0803ce8p+88L -0xb.6p+4L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x3.3b2e3c9fd0803ce8p+88L -0xb.6p+4L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow min_subnorm min_subnorm
+= pow downward flt-32 0x8p-152f 0x8p-152f : 0xf.fffffp-4f : inexact-ok
+= pow tonearest flt-32 0x8p-152f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x8p-152f 0x8p-152f : 0xf.fffffp-4f : inexact-ok
+= pow upward flt-32 0x8p-152f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x8p-152 0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0x8p-152 0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x8p-152 0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0x8p-152 0x8p-152 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x8p-152L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-152L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x8p-152L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-152L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x8p-152L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x8p-152L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x8p-152 0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0x8p-152 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x8p-152 0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0x8p-152 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x8p-152L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-152L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x8p-152L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-152L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x8p-152L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x8p-152L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x8p-152L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x8p-152L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-152L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x8p-152L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-152L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x8p-152L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x8p-152L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x8p-152L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x8p-152L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x8p-152L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-152L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x8p-152L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-152L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x8p-152L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-152L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x8p-152L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-152L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x8p-152L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x4p-1076 0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0x4p-1076 0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x4p-1076 0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0x4p-1076 0x8p-152 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x4p-1076L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-1076L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x4p-1076L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-1076L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x4p-1076L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x4p-1076L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x4p-1076 0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0x4p-1076 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x4p-1076 0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0x4p-1076 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-1076L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x4p-1076L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-1076L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x4p-1076L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-1076L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x4p-1076L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-1076L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x4p-1076L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x4p-1076L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x4p-1076L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x4p-1076L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x4p-1076L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-1076L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x4p-1076L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-1076L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x4p-1076L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-1076L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x4p-1076L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-1076L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x4p-1076L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x8p-16448L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x8p-16448L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x8p-16448L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x8p-16448L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x8p-16448L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x8p-16448L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x8p-16448L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x8p-16448L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-16448L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x8p-16448L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-16448L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x8p-16448L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x8p-16448L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x8p-16448L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x8p-16448L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x8p-16448L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x8p-16448L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x8p-16448L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x8p-16448L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x8p-16448L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-16448L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x8p-16448L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-16448L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x8p-16448L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x8p-16448L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x8p-16448L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x8p-16448L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x8p-16448L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x8p-16448L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x8p-16448L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x8p-16448L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x8p-16448L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-16448L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x8p-16448L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-16448L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x8p-16448L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x8p-16448L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x8p-16448L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x8p-16448L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x8p-16448L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-16448L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x8p-16448L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-16448L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x8p-16448L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-16448L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x8p-16448L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-16448L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x8p-16448L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x4p-16448L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x4p-16448L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x4p-16448L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x4p-16448L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16448L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16448L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16448L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x4p-16448L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x4p-16448L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x4p-16448L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x4p-16448L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x4p-16448L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16448L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16448L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16448L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x4p-16448L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x4p-16448L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x4p-16448L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x4p-16448L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x4p-16448L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16448L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16448L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16448L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x4p-16448L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x4p-16448L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x4p-16448L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x4p-16448L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x4p-16448L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16448L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16448L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16448L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x4p-16448L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16448L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16448L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16448L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x4p-16448L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16496L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16496L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16496L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x4p-16496L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16496L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16496L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16496L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x4p-16496L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16496L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16496L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16496L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x4p-16496L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16496L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16496L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16496L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x4p-16496L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16496L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16496L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16496L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x4p-16496L 0x4p-16496L : 0x1p+0L : inexact-ok
+pow min_subnorm -min_subnorm
+= pow downward flt-32 0x8p-152f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x8p-152f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x8p-152f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x8p-152f -0x8p-152f : 0x1.000002p+0f : inexact-ok
+= pow downward dbl-64 0x8p-152 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x8p-152 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x8p-152 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x8p-152 -0x8p-152 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x8p-152L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x8p-152L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x8p-152L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x8p-152L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x8p-152L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x8p-152L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x8p-152L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x8p-152L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-152L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x8p-152L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-152L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x8p-152L -0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x8p-152L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x8p-152L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x8p-152L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x8p-152L -0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward dbl-64 0x8p-152 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x8p-152 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x8p-152 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x8p-152 -0x4p-1076 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x8p-152L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x8p-152L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x8p-152L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x8p-152L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x8p-152L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x8p-152L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x8p-152L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x8p-152L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-152L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x8p-152L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-152L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x8p-152L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x8p-152L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x8p-152L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x8p-152L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x8p-152L -0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x8p-152L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x8p-152L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x8p-152L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x8p-152L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x8p-152L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x8p-152L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x8p-152L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x8p-152L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-152L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x8p-152L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-152L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x8p-152L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x8p-152L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x8p-152L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x8p-152L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x8p-152L -0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-152L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x8p-152L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-152L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x8p-152L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-152L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x8p-152L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-152L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x8p-152L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward dbl-64 0x4p-1076 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x4p-1076 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x4p-1076 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x4p-1076 -0x8p-152 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x4p-1076L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x4p-1076L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x4p-1076L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x4p-1076L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x4p-1076L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x4p-1076L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x4p-1076L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x4p-1076L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-1076L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x4p-1076L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-1076L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x4p-1076L -0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x4p-1076L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x4p-1076L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x4p-1076L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x4p-1076L -0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward dbl-64 0x4p-1076 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x4p-1076 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x4p-1076 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x4p-1076 -0x4p-1076 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x4p-1076L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x4p-1076L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x4p-1076L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x4p-1076L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x4p-1076L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x4p-1076L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x4p-1076L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x4p-1076L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-1076L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x4p-1076L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-1076L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x4p-1076L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x4p-1076L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x4p-1076L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x4p-1076L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x4p-1076L -0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x4p-1076L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x4p-1076L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x4p-1076L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x4p-1076L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x4p-1076L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x4p-1076L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x4p-1076L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x4p-1076L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-1076L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x4p-1076L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-1076L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x4p-1076L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x4p-1076L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x4p-1076L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x4p-1076L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x4p-1076L -0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-1076L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x4p-1076L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-1076L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x4p-1076L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-1076L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x4p-1076L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-1076L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x4p-1076L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x8p-16448L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x8p-16448L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x8p-16448L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x8p-16448L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x8p-16448L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x8p-16448L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x8p-16448L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x8p-16448L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-16448L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x8p-16448L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-16448L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x8p-16448L -0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x8p-16448L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x8p-16448L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x8p-16448L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x8p-16448L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x8p-16448L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x8p-16448L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x8p-16448L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x8p-16448L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-16448L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x8p-16448L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-16448L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x8p-16448L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x8p-16448L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x8p-16448L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x8p-16448L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x8p-16448L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x8p-16448L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x8p-16448L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x8p-16448L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x8p-16448L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-16448L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x8p-16448L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-16448L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x8p-16448L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x8p-16448L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x8p-16448L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x8p-16448L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x8p-16448L -0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-16448L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x8p-16448L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-16448L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x8p-16448L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x8p-16448L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x8p-16448L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x8p-16448L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x8p-16448L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x4p-16448L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x4p-16448L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x4p-16448L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x4p-16448L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16448L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16448L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16448L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x4p-16448L -0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x4p-16448L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x4p-16448L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x4p-16448L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x4p-16448L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16448L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16448L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16448L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x4p-16448L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x4p-16448L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x4p-16448L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x4p-16448L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x4p-16448L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16448L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16448L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16448L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x4p-16448L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x4p-16448L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x4p-16448L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x4p-16448L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x4p-16448L -0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16448L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16448L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16448L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x4p-16448L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16448L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16448L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16448L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x4p-16448L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16496L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16496L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16496L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x4p-16496L -0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16496L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16496L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16496L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x4p-16496L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16496L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16496L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16496L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x4p-16496L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16496L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16496L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16496L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x4p-16496L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x4p-16496L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x4p-16496L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x4p-16496L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x4p-16496L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+pow max min_subnorm
+= pow downward flt-32 0xf.fffffp+124f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp+124f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp+124f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0xf.fffffp+124f 0x8p-152f : 0x1.000002p+0f : inexact-ok
+= pow downward dbl-64 0xf.fffffp+124 0x8p-152 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp+124 0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp+124 0x8p-152 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0xf.fffffp+124 0x8p-152 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward dbl-64 0xf.fffffp+124 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp+124 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp+124 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0xf.fffffp+124 0x4p-1076 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp+124L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp+124L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp+124L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp+124L 0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp+124L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp+124L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp+124L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp+124L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp+124L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp+124L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+pow max -min_subnorm
+= pow downward flt-32 0xf.fffffp+124f -0x8p-152f : 0xf.fffffp-4f : inexact-ok
+= pow tonearest flt-32 0xf.fffffp+124f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0xf.fffffp+124f -0x8p-152f : 0xf.fffffp-4f : inexact-ok
+= pow upward flt-32 0xf.fffffp+124f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0xf.fffffp+124 -0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp+124 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp+124 -0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0xf.fffffp+124 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp+124L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp+124L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0xf.fffffp+124 -0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.fffffp+124 -0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffp+124L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffp+124L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffp+124L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffp+124L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp+124L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp+124L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp+124L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp+124L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp+124L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp+124L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp+124L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffp+124L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffp+124L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffp+124L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffp+124L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp+124L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp+124L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp+124L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffp+124L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffp+124L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffp+124L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffp+124L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0xf.ffffffffffff8p+1020 -0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p+1020 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.ffffffffffff8p+1020 -0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0xf.ffffffffffff8p+1020 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : 0x1p+0L : inexact-ok
+pow 0.99 min_subnorm
+= pow downward flt-32 0xf.d70a4p-4f 0x8p-152f : 0xf.fffffp-4f : inexact-ok
+= pow tonearest flt-32 0xf.d70a4p-4f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0xf.d70a4p-4f 0x8p-152f : 0xf.fffffp-4f : inexact-ok
+= pow upward flt-32 0xf.d70a4p-4f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0xf.d70a4p-4 0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0xf.d70a4p-4 0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.d70a4p-4 0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0xf.d70a4p-4 0x8p-152 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0xf.d70a4p-4 0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0xf.d70a4p-4 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.d70a4p-4 0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0xf.d70a4p-4 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a4p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a4p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a4p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a4p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a4p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a4p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a4p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a4p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a4p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a4p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a4p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a4p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a4p-4L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a4p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a4p-4L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a4p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a4p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a4p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a4p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a4p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a4p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a4p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a4p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a4p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0xf.d70a3p-4f 0x8p-152f : 0xf.fffffp-4f : inexact-ok
+= pow tonearest flt-32 0xf.d70a3p-4f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0xf.d70a3p-4f 0x8p-152f : 0xf.fffffp-4f : inexact-ok
+= pow upward flt-32 0xf.d70a3p-4f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0xf.d70a3p-4 0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0xf.d70a3p-4 0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.d70a3p-4 0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0xf.d70a3p-4 0x8p-152 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0xf.d70a3p-4 0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0xf.d70a3p-4 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.d70a3p-4 0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0xf.d70a3p-4 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3p-4L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3p-4L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0xf.d70a3d70a3d78p-4 0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0xf.d70a3d70a3d78p-4 0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.d70a3d70a3d78p-4 0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0xf.d70a3d70a3d78p-4 0x8p-152 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d78p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d78p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d78p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d78p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d78p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d78p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d78p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d78p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d78p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d78p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d78p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d78p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d78p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d78p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d78p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d78p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0xf.d70a3d70a3d78p-4 0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0xf.d70a3d70a3d78p-4 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.d70a3d70a3d78p-4 0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0xf.d70a3d70a3d78p-4 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d78p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d78p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d78p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d78p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d78p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d78p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d78p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d78p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d78p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d78p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d78p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d78p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d78p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d78p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d78p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d78p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d78p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d78p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d78p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d78p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d78p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d78p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d78p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d78p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d78p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d78p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d78p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d78p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d78p-4L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d78p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d78p-4L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d78p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d78p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d78p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d78p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d78p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d78p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d78p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d78p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d78p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0xf.d70a3d70a3d7p-4 0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0xf.d70a3d70a3d7p-4 0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.d70a3d70a3d7p-4 0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0xf.d70a3d70a3d7p-4 0x8p-152 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d7p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d7p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d7p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d7p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d7p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d7p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d7p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d7p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d7p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d7p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d7p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d7p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d7p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d7p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d7p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d7p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0xf.d70a3d70a3d7p-4 0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0xf.d70a3d70a3d7p-4 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.d70a3d70a3d7p-4 0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0xf.d70a3d70a3d7p-4 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d7p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d7p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d7p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d7p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d7p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d7p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d7p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d7p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d7p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d7p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d7p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d7p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d7p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d7p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d7p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d7p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d7p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d7p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d7p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d7p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d7p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d7p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d7p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d7p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d7p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d7p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d7p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d7p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d7p-4L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d7p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d7p-4L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d7p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d7p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d7p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d7p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d7p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d7p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d7p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d7p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d7p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a4p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d70a3p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d70a3p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d70a3p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d70a3p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d70a3p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d70a3p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d70a3p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d70a3p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L 0x4p-16496L : 0x1p+0L : inexact-ok
+pow 0.99 -min_subnorm
+= pow downward flt-32 0xf.d70a4p-4f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0xf.d70a4p-4f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0xf.d70a4p-4f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0xf.d70a4p-4f -0x8p-152f : 0x1.000002p+0f : inexact-ok
+= pow downward dbl-64 0xf.d70a4p-4 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0xf.d70a4p-4 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.d70a4p-4 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0xf.d70a4p-4 -0x8p-152 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a4p-4L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a4p-4L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a4p-4L -0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a4p-4L -0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward dbl-64 0xf.d70a4p-4 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0xf.d70a4p-4 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.d70a4p-4 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0xf.d70a4p-4 -0x4p-1076 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a4p-4L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a4p-4L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a4p-4L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a4p-4L -0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a4p-4L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a4p-4L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a4p-4L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a4p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a4p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a4p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a4p-4L -0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a4p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a4p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a4p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a4p-4L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a4p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a4p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a4p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a4p-4L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward flt-32 0xf.d70a3p-4f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0xf.d70a3p-4f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0xf.d70a3p-4f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0xf.d70a3p-4f -0x8p-152f : 0x1.000002p+0f : inexact-ok
+= pow downward dbl-64 0xf.d70a3p-4 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0xf.d70a3p-4 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.d70a3p-4 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0xf.d70a3p-4 -0x8p-152 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3p-4L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3p-4L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3p-4L -0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3p-4L -0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward dbl-64 0xf.d70a3p-4 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0xf.d70a3p-4 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.d70a3p-4 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0xf.d70a3p-4 -0x4p-1076 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3p-4L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3p-4L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3p-4L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3p-4L -0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3p-4L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3p-4L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3p-4L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3p-4L -0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3p-4L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3p-4L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward dbl-64 0xf.d70a3d70a3d78p-4 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0xf.d70a3d70a3d78p-4 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.d70a3d70a3d78p-4 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0xf.d70a3d70a3d78p-4 -0x8p-152 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d78p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d78p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d78p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d78p-4L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d78p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d78p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d78p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d78p-4L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d78p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d78p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d78p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d78p-4L -0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d78p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d78p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d78p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d78p-4L -0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward dbl-64 0xf.d70a3d70a3d78p-4 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0xf.d70a3d70a3d78p-4 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.d70a3d70a3d78p-4 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0xf.d70a3d70a3d78p-4 -0x4p-1076 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d78p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d78p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d78p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d78p-4L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d78p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d78p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d78p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d78p-4L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d78p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d78p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d78p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d78p-4L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d78p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d78p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d78p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d78p-4L -0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d78p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d78p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d78p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d78p-4L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d78p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d78p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d78p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d78p-4L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d78p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d78p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d78p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d78p-4L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d78p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d78p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d78p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d78p-4L -0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d78p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d78p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d78p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d78p-4L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d78p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d78p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d78p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d78p-4L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward dbl-64 0xf.d70a3d70a3d7p-4 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0xf.d70a3d70a3d7p-4 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.d70a3d70a3d7p-4 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0xf.d70a3d70a3d7p-4 -0x8p-152 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d7p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d7p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d7p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d7p-4L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d7p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d7p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d7p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d7p-4L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d7p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d7p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d7p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d7p-4L -0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d7p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d7p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d7p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d7p-4L -0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward dbl-64 0xf.d70a3d70a3d7p-4 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0xf.d70a3d70a3d7p-4 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0xf.d70a3d70a3d7p-4 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0xf.d70a3d70a3d7p-4 -0x4p-1076 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d7p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d7p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d7p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d7p-4L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d7p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d7p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d7p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d7p-4L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d7p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d7p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d7p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d7p-4L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d7p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d7p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d7p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d7p-4L -0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d7p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d7p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d7p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d7p-4L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d7p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d7p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d7p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d7p-4L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d7p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d7p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d7p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d7p-4L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d7p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d7p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d7p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d7p-4L -0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d7p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d7p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d7p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d7p-4L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d7p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d7p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d7p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d7p-4L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d70a4p-4L -0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d70a4p-4L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d70a4p-4L -0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a4p-4L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d70a3p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d70a3p-4L -0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d70a3p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d70a3p-4L -0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0xf.d70a3d70a3d70a3p-4L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0xf.d70a3d70a3d70a3p-4L -0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3p-4L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d78p-4L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3d7p-4L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a4p-4L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0xf.d70a3d70a3d70a3d70a3d70a3cp-4L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+pow 1.01 min_subnorm
+= pow downward flt-32 0x1.028f5ep+0f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1.028f5ep+0f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1.028f5ep+0f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1.028f5ep+0f 0x8p-152f : 0x1.000002p+0f : inexact-ok
+= pow downward dbl-64 0x1.028f5ep+0 0x8p-152 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1.028f5ep+0 0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.028f5ep+0 0x8p-152 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1.028f5ep+0 0x8p-152 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5ep+0L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5ep+0L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5ep+0L 0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5ep+0L 0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward dbl-64 0x1.028f5ep+0 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1.028f5ep+0 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.028f5ep+0 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1.028f5ep+0 0x4p-1076 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5ep+0L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5ep+0L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5ep+0L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5ep+0L 0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5ep+0L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5ep+0L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5ep+0L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5ep+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5ep+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5ep+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5ep+0L 0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5ep+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5ep+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5ep+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5ep+0L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5ep+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5ep+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5ep+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5ep+0L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward flt-32 0x1.028f5cp+0f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow tonearest flt-32 0x1.028f5cp+0f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1.028f5cp+0f 0x8p-152f : 0x1p+0f : inexact-ok
+= pow upward flt-32 0x1.028f5cp+0f 0x8p-152f : 0x1.000002p+0f : inexact-ok
+= pow downward dbl-64 0x1.028f5cp+0 0x8p-152 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1.028f5cp+0 0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.028f5cp+0 0x8p-152 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1.028f5cp+0 0x8p-152 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5cp+0L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5cp+0L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5cp+0L 0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5cp+0L 0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward dbl-64 0x1.028f5cp+0 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1.028f5cp+0 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.028f5cp+0 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1.028f5cp+0 0x4p-1076 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5cp+0L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5cp+0L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5cp+0L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5cp+0L 0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5cp+0L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5cp+0L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5cp+0L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5cp+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5cp+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5cp+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5cp+0L 0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5cp+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5cp+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5cp+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5cp+0L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5cp+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5cp+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5cp+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5cp+0L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward dbl-64 0x1.028f5c28f5c29p+0 0x8p-152 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1.028f5c28f5c29p+0 0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.028f5c28f5c29p+0 0x8p-152 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1.028f5c28f5c29p+0 0x8p-152 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c29p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c29p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c29p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c29p+0L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c29p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c29p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c29p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c29p+0L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c29p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c29p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c29p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c29p+0L 0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c29p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c29p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c29p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c29p+0L 0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward dbl-64 0x1.028f5c28f5c29p+0 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1.028f5c28f5c29p+0 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.028f5c28f5c29p+0 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1.028f5c28f5c29p+0 0x4p-1076 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c29p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c29p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c29p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c29p+0L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c29p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c29p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c29p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c29p+0L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c29p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c29p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c29p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c29p+0L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c29p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c29p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c29p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c29p+0L 0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c29p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c29p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c29p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c29p+0L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c29p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c29p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c29p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c29p+0L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c29p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c29p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c29p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c29p+0L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c29p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c29p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c29p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c29p+0L 0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c29p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c29p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c29p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c29p+0L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c29p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c29p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c29p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c29p+0L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward dbl-64 0x1.028f5c28f5c28p+0 0x8p-152 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1.028f5c28f5c28p+0 0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.028f5c28f5c28p+0 0x8p-152 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1.028f5c28f5c28p+0 0x8p-152 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28p+0L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28p+0L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28p+0L 0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28p+0L 0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward dbl-64 0x1.028f5c28f5c28p+0 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow tonearest dbl-64 0x1.028f5c28f5c28p+0 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.028f5c28f5c28p+0 0x4p-1076 : 0x1p+0 : inexact-ok
+= pow upward dbl-64 0x1.028f5c28f5c28p+0 0x4p-1076 : 0x1.0000000000001p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28p+0L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28p+0L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28p+0L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28p+0L 0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28p+0L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28p+0L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28p+0L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28p+0L 0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28p+0L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28p+0L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28f5ep+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28f5ep+0L 0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28f5ep+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28f5ep+0L 0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L 0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5ep+0L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28f5cp+0L 0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28f5cp+0L 0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L 0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5cp+0L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x8p-152L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x4p-1076L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x8p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x4p-16448L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x4p-16496L : 0x1p+0L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok
+pow 1.01 -min_subnorm
+= pow downward flt-32 0x1.028f5ep+0f -0x8p-152f : 0xf.fffffp-4f : inexact-ok
+= pow tonearest flt-32 0x1.028f5ep+0f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1.028f5ep+0f -0x8p-152f : 0xf.fffffp-4f : inexact-ok
+= pow upward flt-32 0x1.028f5ep+0f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1.028f5ep+0 -0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0x1.028f5ep+0 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.028f5ep+0 -0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0x1.028f5ep+0 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5ep+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5ep+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5ep+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5ep+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5ep+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5ep+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5ep+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5ep+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5ep+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5ep+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5ep+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5ep+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5ep+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5ep+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5ep+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5ep+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1.028f5ep+0 -0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0x1.028f5ep+0 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.028f5ep+0 -0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0x1.028f5ep+0 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5ep+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5ep+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5ep+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5ep+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5ep+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5ep+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5ep+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5ep+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5ep+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5ep+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5ep+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5ep+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5ep+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5ep+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5ep+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5ep+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5ep+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5ep+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5ep+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5ep+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5ep+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5ep+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5ep+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5ep+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5ep+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5ep+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5ep+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5ep+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5ep+0L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5ep+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5ep+0L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5ep+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5ep+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5ep+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5ep+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5ep+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5ep+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5ep+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5ep+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5ep+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward flt-32 0x1.028f5cp+0f -0x8p-152f : 0xf.fffffp-4f : inexact-ok
+= pow tonearest flt-32 0x1.028f5cp+0f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow towardzero flt-32 0x1.028f5cp+0f -0x8p-152f : 0xf.fffffp-4f : inexact-ok
+= pow upward flt-32 0x1.028f5cp+0f -0x8p-152f : 0x1p+0f : inexact-ok
+= pow downward dbl-64 0x1.028f5cp+0 -0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0x1.028f5cp+0 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.028f5cp+0 -0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0x1.028f5cp+0 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5cp+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5cp+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5cp+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5cp+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5cp+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5cp+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5cp+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5cp+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1.028f5cp+0 -0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0x1.028f5cp+0 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.028f5cp+0 -0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0x1.028f5cp+0 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5cp+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5cp+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5cp+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5cp+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5cp+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5cp+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5cp+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5cp+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5cp+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5cp+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5cp+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5cp+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5cp+0L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5cp+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5cp+0L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5cp+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5cp+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5cp+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5cp+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5cp+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5cp+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5cp+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5cp+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5cp+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1.028f5c28f5c29p+0 -0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0x1.028f5c28f5c29p+0 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.028f5c28f5c29p+0 -0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0x1.028f5c28f5c29p+0 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c29p+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c29p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c29p+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c29p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c29p+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c29p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c29p+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c29p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c29p+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c29p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c29p+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c29p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c29p+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c29p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c29p+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c29p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1.028f5c28f5c29p+0 -0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0x1.028f5c28f5c29p+0 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.028f5c28f5c29p+0 -0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0x1.028f5c28f5c29p+0 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c29p+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c29p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c29p+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c29p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c29p+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c29p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c29p+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c29p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c29p+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c29p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c29p+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c29p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c29p+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c29p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c29p+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c29p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c29p+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c29p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c29p+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c29p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c29p+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c29p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c29p+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c29p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c29p+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c29p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c29p+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c29p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c29p+0L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c29p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c29p+0L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c29p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c29p+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c29p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c29p+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c29p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c29p+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c29p+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c29p+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c29p+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1.028f5c28f5c28p+0 -0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0x1.028f5c28f5c28p+0 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.028f5c28f5c28p+0 -0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0x1.028f5c28f5c28p+0 -0x8p-152 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28p+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28p+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28p+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28p+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28p+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28p+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28p+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28p+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward dbl-64 0x1.028f5c28f5c28p+0 -0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow tonearest dbl-64 0x1.028f5c28f5c28p+0 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.028f5c28f5c28p+0 -0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok
+= pow upward dbl-64 0x1.028f5c28f5c28p+0 -0x4p-1076 : 0x1p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28p+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28p+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28p+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28p+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28p+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28p+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28p+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28p+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28p+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28p+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28p+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28p+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28p+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28p+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28p+0L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28p+0L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28p+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28p+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28p+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28p+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28p+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28p+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28f5ep+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28f5ep+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28f5ep+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28f5ep+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28f5ep+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28f5ep+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28f5ep+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28f5ep+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28f5ep+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28f5ep+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5ep+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28f5cp+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28f5cp+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-intel 0x1.028f5c28f5c28f5cp+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.028f5c28f5c28f5cp+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5cp+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c29p+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c28p+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5c8p+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x8p-152L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok
+= pow upward ldbl-128ibm 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x4p-1076L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x8p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x4p-16448L : 0x1p+0L : inexact-ok
+= pow downward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow tonearest ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok
+= pow upward ldbl-128 0x1.028f5c28f5c28f5c28f5c28f5cp+0L -0x4p-16496L : 0x1p+0L : inexact-ok
+pow 2.0 -100000.0
+= pow downward flt-32 0x2p+0f -0x1.86ap+16f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow tonearest flt-32 0x2p+0f -0x1.86ap+16f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow towardzero flt-32 0x2p+0f -0x1.86ap+16f : 0x0p+0f : inexact-ok underflow errno-erange
+= pow upward flt-32 0x2p+0f -0x1.86ap+16f : 0x8p-152f : inexact-ok underflow errno-erange-ok
+= pow downward dbl-64 0x2p+0 -0x1.86ap+16 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow tonearest dbl-64 0x2p+0 -0x1.86ap+16 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow towardzero dbl-64 0x2p+0 -0x1.86ap+16 : 0x0p+0 : inexact-ok underflow errno-erange
+= pow upward dbl-64 0x2p+0 -0x1.86ap+16 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-intel 0x2p+0L -0x1.86ap+16L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-intel 0x2p+0L -0x1.86ap+16L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-intel 0x2p+0L -0x1.86ap+16L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-intel 0x2p+0L -0x1.86ap+16L : 0x8p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-96-m68k 0x2p+0L -0x1.86ap+16L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-96-m68k 0x2p+0L -0x1.86ap+16L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-96-m68k 0x2p+0L -0x1.86ap+16L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-96-m68k 0x2p+0L -0x1.86ap+16L : 0x4p-16448L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128 0x2p+0L -0x1.86ap+16L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128 0x2p+0L -0x1.86ap+16L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128 0x2p+0L -0x1.86ap+16L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128 0x2p+0L -0x1.86ap+16L : 0x4p-16496L : inexact-ok underflow errno-erange-ok
+= pow downward ldbl-128ibm 0x2p+0L -0x1.86ap+16L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow tonearest ldbl-128ibm 0x2p+0L -0x1.86ap+16L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow towardzero ldbl-128ibm 0x2p+0L -0x1.86ap+16L : 0x0p+0L : inexact-ok underflow errno-erange
+= pow upward ldbl-128ibm 0x2p+0L -0x1.86ap+16L : 0x4p-1076L : inexact-ok underflow errno-erange-ok
+pow 1.0625 1.125
+= pow downward flt-32 0x1.1p+0f 0x1.2p+0f : 0x1.1211aep+0f : inexact-ok
+= pow tonearest flt-32 0x1.1p+0f 0x1.2p+0f : 0x1.1211aep+0f : inexact-ok
+= pow towardzero flt-32 0x1.1p+0f 0x1.2p+0f : 0x1.1211aep+0f : inexact-ok
+= pow upward flt-32 0x1.1p+0f 0x1.2p+0f : 0x1.1211bp+0f : inexact-ok
+= pow downward dbl-64 0x1.1p+0 0x1.2p+0 : 0x1.1211ae603c374p+0 : inexact-ok
+= pow tonearest dbl-64 0x1.1p+0 0x1.2p+0 : 0x1.1211ae603c375p+0 : inexact-ok
+= pow towardzero dbl-64 0x1.1p+0 0x1.2p+0 : 0x1.1211ae603c374p+0 : inexact-ok
+= pow upward dbl-64 0x1.1p+0 0x1.2p+0 : 0x1.1211ae603c375p+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.1p+0L 0x1.2p+0L : 0x1.1211ae603c374d4p+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.1p+0L 0x1.2p+0L : 0x1.1211ae603c374d4p+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.1p+0L 0x1.2p+0L : 0x1.1211ae603c374d4p+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.1p+0L 0x1.2p+0L : 0x1.1211ae603c374d42p+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.1p+0L 0x1.2p+0L : 0x1.1211ae603c374d4p+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.1p+0L 0x1.2p+0L : 0x1.1211ae603c374d4p+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.1p+0L 0x1.2p+0L : 0x1.1211ae603c374d4p+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.1p+0L 0x1.2p+0L : 0x1.1211ae603c374d42p+0L : inexact-ok
+= pow downward ldbl-128 0x1.1p+0L 0x1.2p+0L : 0x1.1211ae603c374d40159530102074p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.1p+0L 0x1.2p+0L : 0x1.1211ae603c374d40159530102074p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.1p+0L 0x1.2p+0L : 0x1.1211ae603c374d40159530102074p+0L : inexact-ok
+= pow upward ldbl-128 0x1.1p+0L 0x1.2p+0L : 0x1.1211ae603c374d40159530102075p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.1p+0L 0x1.2p+0L : 0x1.1211ae603c374d40159530102p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.1p+0L 0x1.2p+0L : 0x1.1211ae603c374d4015953010208p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.1p+0L 0x1.2p+0L : 0x1.1211ae603c374d40159530102p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.1p+0L 0x1.2p+0L : 0x1.1211ae603c374d4015953010208p+0L : inexact-ok
+pow 1.5 1.03125
+= pow downward flt-32 0x1.8p+0f 0x1.08p+0f : 0x1.84e582p+0f : inexact-ok
+= pow tonearest flt-32 0x1.8p+0f 0x1.08p+0f : 0x1.84e584p+0f : inexact-ok
+= pow towardzero flt-32 0x1.8p+0f 0x1.08p+0f : 0x1.84e582p+0f : inexact-ok
+= pow upward flt-32 0x1.8p+0f 0x1.08p+0f : 0x1.84e584p+0f : inexact-ok
+= pow downward dbl-64 0x1.8p+0 0x1.08p+0 : 0x1.84e58377727acp+0 : inexact-ok
+= pow tonearest dbl-64 0x1.8p+0 0x1.08p+0 : 0x1.84e58377727acp+0 : inexact-ok
+= pow towardzero dbl-64 0x1.8p+0 0x1.08p+0 : 0x1.84e58377727acp+0 : inexact-ok
+= pow upward dbl-64 0x1.8p+0 0x1.08p+0 : 0x1.84e58377727adp+0 : inexact-ok
+= pow downward ldbl-96-intel 0x1.8p+0L 0x1.08p+0L : 0x1.84e58377727ac18cp+0L : inexact-ok
+= pow tonearest ldbl-96-intel 0x1.8p+0L 0x1.08p+0L : 0x1.84e58377727ac18cp+0L : inexact-ok
+= pow towardzero ldbl-96-intel 0x1.8p+0L 0x1.08p+0L : 0x1.84e58377727ac18cp+0L : inexact-ok
+= pow upward ldbl-96-intel 0x1.8p+0L 0x1.08p+0L : 0x1.84e58377727ac18ep+0L : inexact-ok
+= pow downward ldbl-96-m68k 0x1.8p+0L 0x1.08p+0L : 0x1.84e58377727ac18cp+0L : inexact-ok
+= pow tonearest ldbl-96-m68k 0x1.8p+0L 0x1.08p+0L : 0x1.84e58377727ac18cp+0L : inexact-ok
+= pow towardzero ldbl-96-m68k 0x1.8p+0L 0x1.08p+0L : 0x1.84e58377727ac18cp+0L : inexact-ok
+= pow upward ldbl-96-m68k 0x1.8p+0L 0x1.08p+0L : 0x1.84e58377727ac18ep+0L : inexact-ok
+= pow downward ldbl-128 0x1.8p+0L 0x1.08p+0L : 0x1.84e58377727ac18c4b0e8b54f091p+0L : inexact-ok
+= pow tonearest ldbl-128 0x1.8p+0L 0x1.08p+0L : 0x1.84e58377727ac18c4b0e8b54f091p+0L : inexact-ok
+= pow towardzero ldbl-128 0x1.8p+0L 0x1.08p+0L : 0x1.84e58377727ac18c4b0e8b54f091p+0L : inexact-ok
+= pow upward ldbl-128 0x1.8p+0L 0x1.08p+0L : 0x1.84e58377727ac18c4b0e8b54f092p+0L : inexact-ok
+= pow downward ldbl-128ibm 0x1.8p+0L 0x1.08p+0L : 0x1.84e58377727ac18c4b0e8b54f08p+0L : inexact-ok
+= pow tonearest ldbl-128ibm 0x1.8p+0L 0x1.08p+0L : 0x1.84e58377727ac18c4b0e8b54f08p+0L : inexact-ok
+= pow towardzero ldbl-128ibm 0x1.8p+0L 0x1.08p+0L : 0x1.84e58377727ac18c4b0e8b54f08p+0L : inexact-ok
+= pow upward ldbl-128ibm 0x1.8p+0L 0x1.08p+0L : 0x1.84e58377727ac18c4b0e8b54f1p+0L : inexact-ok
sin 0
= sin downward flt-32 0x0p+0f : 0x0p+0f : inexact-ok
= sin tonearest flt-32 0x0p+0f : 0x0p+0f : inexact-ok
diff --git a/math/gen-auto-libm-tests.c b/math/gen-auto-libm-tests.c
index 87585b9313..d25363bf0e 100644
--- a/math/gen-auto-libm-tests.c
+++ b/math/gen-auto-libm-tests.c
@@ -392,6 +392,8 @@ typedef enum
{
/* MPFR function with a single argument and result. */
mpfr_f_f,
+ /* MPFR function with two arguments and one result. */
+ mpfr_ff_f,
/* MPFR function with a single argument and floating-point and
integer results. */
mpfr_f_f1,
@@ -406,6 +408,7 @@ typedef struct
union
{
int (*mpfr_f_f) (mpfr_t, const mpfr_t, mpfr_rnd_t);
+ int (*mpfr_ff_f) (mpfr_t, const mpfr_t, const mpfr_t, mpfr_rnd_t);
int (*mpfr_f_f1) (mpfr_t, int *, const mpfr_t, mpfr_rnd_t);
} func;
} func_calc_desc;
@@ -454,6 +457,9 @@ typedef struct
#define FUNC_mpfr_f_f(NAME, MPFR_FUNC, EXACT) \
FUNC (NAME, ARGS1 (type_fp), RET1 (type_fp), EXACT, false, \
CALC (mpfr_f_f, MPFR_FUNC))
+#define FUNC_mpfr_ff_f(NAME, MPFR_FUNC, EXACT) \
+ FUNC (NAME, ARGS2 (type_fp, type_fp), RET1 (type_fp), EXACT, false, \
+ CALC (mpfr_ff_f, MPFR_FUNC))
/* List of functions handled by this program. */
static test_function test_functions[] =
@@ -463,6 +469,7 @@ static test_function test_functions[] =
FUNC_mpfr_f_f ("asin", mpfr_asin, false),
FUNC_mpfr_f_f ("asinh", mpfr_asinh, false),
FUNC_mpfr_f_f ("atan", mpfr_atan, false),
+ FUNC_mpfr_ff_f ("atan2", mpfr_atan2, false),
FUNC_mpfr_f_f ("atanh", mpfr_atanh, false),
FUNC_mpfr_f_f ("cbrt", mpfr_cbrt, false),
FUNC_mpfr_f_f ("cos", mpfr_cos, false),
@@ -473,6 +480,7 @@ static test_function test_functions[] =
FUNC_mpfr_f_f ("exp10", mpfr_exp10, false),
FUNC_mpfr_f_f ("exp2", mpfr_exp2, false),
FUNC_mpfr_f_f ("expm1", mpfr_expm1, false),
+ FUNC_mpfr_ff_f ("hypot", mpfr_hypot, false),
FUNC_mpfr_f_f ("j0", mpfr_j0, false),
FUNC_mpfr_f_f ("j1", mpfr_j1, false),
FUNC ("lgamma", ARGS1 (type_fp), RET2 (type_fp, type_int), false, false,
@@ -481,6 +489,7 @@ static test_function test_functions[] =
FUNC_mpfr_f_f ("log10", mpfr_log10, false),
FUNC_mpfr_f_f ("log1p", mpfr_log1p, false),
FUNC_mpfr_f_f ("log2", mpfr_log2, false),
+ FUNC_mpfr_ff_f ("pow", mpfr_pow, false),
FUNC_mpfr_f_f ("sin", mpfr_sin, false),
FUNC_mpfr_f_f ("sinh", mpfr_sinh, false),
FUNC_mpfr_f_f ("sqrt", mpfr_sqrt, true),
@@ -665,6 +674,43 @@ special_fill_minus_max (mpfr_t res0, mpfr_t res1 __attribute__ ((unused)),
}
static size_t
+special_fill_min (mpfr_t res0, mpfr_t res1 __attribute__ ((unused)),
+ fp_format format)
+{
+ mpfr_init2 (res0, fp_formats[format].mant_dig);
+ assert_exact (mpfr_set (res0, fp_formats[format].min, MPFR_RNDN));
+ return 1;
+}
+
+static size_t
+special_fill_minus_min (mpfr_t res0, mpfr_t res1 __attribute__ ((unused)),
+ fp_format format)
+{
+ mpfr_init2 (res0, fp_formats[format].mant_dig);
+ assert_exact (mpfr_neg (res0, fp_formats[format].min, MPFR_RNDN));
+ return 1;
+}
+
+static size_t
+special_fill_min_subnorm (mpfr_t res0, mpfr_t res1 __attribute__ ((unused)),
+ fp_format format)
+{
+ mpfr_init2 (res0, fp_formats[format].mant_dig);
+ assert_exact (mpfr_set (res0, fp_formats[format].subnorm_min, MPFR_RNDN));
+ return 1;
+}
+
+static size_t
+special_fill_minus_min_subnorm (mpfr_t res0,
+ mpfr_t res1 __attribute__ ((unused)),
+ fp_format format)
+{
+ mpfr_init2 (res0, fp_formats[format].mant_dig);
+ assert_exact (mpfr_neg (res0, fp_formats[format].subnorm_min, MPFR_RNDN));
+ return 1;
+}
+
+static size_t
special_fill_pi (mpfr_t res0, mpfr_t res1, fp_format format)
{
mpfr_init2 (res0, fp_formats[format].mant_dig);
@@ -825,6 +871,10 @@ static const special_real_input special_real_inputs[] =
{
{ "max", special_fill_max },
{ "-max", special_fill_minus_max },
+ { "min", special_fill_min },
+ { "-min", special_fill_minus_min },
+ { "min_subnorm", special_fill_min_subnorm },
+ { "-min_subnorm", special_fill_minus_min_subnorm },
{ "pi", special_fill_pi },
{ "-pi", special_fill_minus_pi },
{ "pi/2", special_fill_pi_2 },
@@ -1266,6 +1316,15 @@ calc_generic_results (generic_value *outputs, generic_value *inputs,
adjust_real (outputs[0].value.f, inexact);
break;
+ case mpfr_ff_f:
+ assert (inputs[0].type == gtype_fp);
+ outputs[0].type = gtype_fp;
+ mpfr_init (outputs[0].value.f);
+ inexact = calc->func.mpfr_ff_f (outputs[0].value.f, inputs[0].value.f,
+ inputs[1].value.f, MPFR_RNDZ);
+ adjust_real (outputs[0].value.f, inexact);
+ break;
+
case mpfr_f_f1:
assert (inputs[0].type == gtype_fp);
outputs[0].type = gtype_fp;
diff --git a/math/libm-test.inc b/math/libm-test.inc
index cb87e3c971..5988b25d72 100644
--- a/math/libm-test.inc
+++ b/math/libm-test.inc
@@ -1880,36 +1880,6 @@ atanh_test (void)
static const struct test_ff_f_data atan2_test_data[] =
{
- /* atan2 (0,x) == 0 for x > 0. */
- TEST_ff_f (atan2, 0, 1, 0),
-
- /* atan2 (-0,x) == -0 for x > 0. */
- TEST_ff_f (atan2, minus_zero, 1, minus_zero),
-
- TEST_ff_f (atan2, 0, 0, 0),
- TEST_ff_f (atan2, minus_zero, 0, minus_zero),
-
- /* atan2 (+0,x) == +pi for x < 0. */
- TEST_ff_f (atan2, 0, -1, M_PIl),
-
- /* atan2 (-0,x) == -pi for x < 0. */
- TEST_ff_f (atan2, minus_zero, -1, -M_PIl),
-
- TEST_ff_f (atan2, 0, minus_zero, M_PIl),
- TEST_ff_f (atan2, minus_zero, minus_zero, -M_PIl),
-
- /* atan2 (y,+0) == pi/2 for y > 0. */
- TEST_ff_f (atan2, 1, 0, M_PI_2l),
-
- /* atan2 (y,-0) == pi/2 for y > 0. */
- TEST_ff_f (atan2, 1, minus_zero, M_PI_2l),
-
- /* atan2 (y,+0) == -pi/2 for y < 0. */
- TEST_ff_f (atan2, -1, 0, -M_PI_2l),
-
- /* atan2 (y,-0) == -pi/2 for y < 0. */
- TEST_ff_f (atan2, -1, minus_zero, -M_PI_2l),
-
/* atan2 (y,inf) == +0 for finite y > 0. */
TEST_ff_f (atan2, 1, plus_infty, 0),
@@ -1934,22 +1904,7 @@ static const struct test_ff_f_data atan2_test_data[] =
TEST_ff_f (atan2, minus_infty, minus_infty, -M_PI_34l),
TEST_ff_f (atan2, qnan_value, qnan_value, qnan_value, NO_INEXACT_EXCEPTION),
- TEST_ff_f (atan2, max_value, max_value, M_PI_4l),
-
- TEST_ff_f (atan2, max_value, min_value, M_PI_2l),
- TEST_ff_f (atan2, -max_value, -min_value, -M_PI_2l),
-
- TEST_ff_f (atan2, 0.75L, 1, 0.643501108793284386802809228717322638L),
- TEST_ff_f (atan2, -0.75L, 1.0L, -0.643501108793284386802809228717322638L),
- TEST_ff_f (atan2, 0.75L, -1.0L, 2.49809154479650885165983415456218025L),
- TEST_ff_f (atan2, -0.75L, -1.0L, -2.49809154479650885165983415456218025L),
- TEST_ff_f (atan2, 0.390625L, .00029L, 1.57005392693128974780151246612928941L),
- TEST_ff_f (atan2, 1.390625L, 0.9296875L, 0.981498387184244311516296577615519772L),
-
- TEST_ff_f (atan2, -0.00756827042671106339L, -.001792735857538728036L, -1.80338464113663849327153994379639112L),
-#if defined TEST_LDOUBLE && LDBL_MANT_DIG >= 64
- TEST_ff_f (atan2, 0x1.00000000000001p0L, 0x1.00000000000001p0L, M_PI_4l),
-#endif
+ AUTO_TESTS_ff_f (atan2, tonearest),
};
static void
@@ -9190,53 +9145,7 @@ static const struct test_ff_f_data hypot_test_data[] =
TEST_ff_f (hypot, qnan_value, qnan_value, qnan_value, NO_INEXACT_EXCEPTION),
- /* hypot (x,y) == hypot (+-x, +-y) */
- TEST_ff_f (hypot, 0.7L, 12.4L, 12.419742348374220601176836866763271L),
- TEST_ff_f (hypot, -0.7L, 12.4L, 12.419742348374220601176836866763271L),
- TEST_ff_f (hypot, 0.7L, -12.4L, 12.419742348374220601176836866763271L),
- TEST_ff_f (hypot, -0.7L, -12.4L, 12.419742348374220601176836866763271L),
- TEST_ff_f (hypot, 12.4L, 0.7L, 12.419742348374220601176836866763271L),
- TEST_ff_f (hypot, -12.4L, 0.7L, 12.419742348374220601176836866763271L),
- TEST_ff_f (hypot, 12.4L, -0.7L, 12.419742348374220601176836866763271L),
- TEST_ff_f (hypot, -12.4L, -0.7L, 12.419742348374220601176836866763271L),
-
- /* hypot (x,0) == fabs (x) */
- TEST_ff_f (hypot, 0.75L, 0, 0.75L),
- TEST_ff_f (hypot, -0.75L, 0, 0.75L),
- TEST_ff_f (hypot, -5.7e7, 0, 5.7e7L),
-
- TEST_ff_f (hypot, 0.75L, 1.25L, 1.45773797371132511771853821938639577L),
-
- TEST_ff_f (hypot, 1.0L, 0x1p-61L, 1.0L),
- TEST_ff_f (hypot, 0x1p+0L, 0x1.fp-129L, 0x1p+0L),
-#if defined TEST_LDOUBLE && LDBL_MANT_DIG >= 106
- TEST_ff_f (hypot, 0x1.23456789abcdef0123456789ab8p-500L, 0x1.23456789abcdef0123456789ab8p-500L, 4.9155782399407039128612180934736799735113e-151L),
-#endif
-
- TEST_ff_f (hypot, 0x3p125L, 0x4p125L, 0x5p125L, NO_TEST_INLINE_FLOAT),
- TEST_ff_f (hypot, 0x1.234566p-126L, 0x1.234566p-126L, 1.891441686191081936598531534017449451173e-38L, NO_TEST_INLINE_FLOAT),
-
-#ifndef TEST_FLOAT
- TEST_ff_f (hypot, 0x3p1021L, 0x4p1021L, 0x5p1021L, NO_TEST_INLINE_DOUBLE),
- TEST_ff_f (hypot, 0x1p+0L, 0x0.3ep-1022L, 0x1p+0L, NO_TEST_INLINE_DOUBLE),
-#endif
-
-#if defined TEST_LDOUBLE && LDBL_MAX_EXP >= 16384
- TEST_ff_f (hypot, 0x3p16381L, 0x4p16381L, 0x5p16381L, NO_TEST_INLINE),
-#endif
-
- TEST_ff_f (hypot, 0x1p-149L, 0x1p-149L, 1.9817352931807469938024533350782879785095e-45L, UNDERFLOW_EXCEPTION_FLOAT),
-
-#ifndef TEST_FLOAT
- TEST_ff_f (hypot, 0x1p-1074L, 0x1p-1074L, 6.9871433705131320800651344656990806305791e-324L, UNDERFLOW_EXCEPTION_DOUBLE),
-#endif
-
-#if defined TEST_LDOUBLE && LDBL_MIN_EXP <= -16381
- TEST_ff_f (hypot, 0x1p-16445L, 0x1p-16445L, 5.1550906155442528702558159159596215039925e-4951L, UNDERFLOW_EXCEPTION|NO_TEST_INLINE),
-# if LDBL_MANT_DIG >= 113
- TEST_ff_f (hypot, 0x1p-16494L, 0x1p-16494L, 9.1572804726500807075521065242888978445857e-4966L, UNDERFLOW_EXCEPTION|NO_TEST_INLINE),
-# endif
-#endif
+ AUTO_TESTS_ff_f (hypot, tonearest),
};
static void
@@ -11190,16 +11099,6 @@ nexttoward_test (void)
static const struct test_ff_f_data pow_test_data[] =
{
- TEST_ff_f (pow, 0, 0, 1),
- TEST_ff_f (pow, 0, minus_zero, 1),
- TEST_ff_f (pow, minus_zero, 0, 1),
- TEST_ff_f (pow, minus_zero, minus_zero, 1),
-
- TEST_ff_f (pow, 10, 0, 1),
- TEST_ff_f (pow, 10, minus_zero, 1),
- TEST_ff_f (pow, -10, 0, 1),
- TEST_ff_f (pow, -10, minus_zero, 1),
-
TEST_ff_f (pow, qnan_value, 0, 1),
TEST_ff_f (pow, qnan_value, minus_zero, 1),
@@ -11286,30 +11185,12 @@ static const struct test_ff_f_data pow_test_data[] =
TEST_ff_f (pow, -1, plus_infty, 1),
TEST_ff_f (pow, 1, minus_infty, 1),
TEST_ff_f (pow, -1, minus_infty, 1),
- TEST_ff_f (pow, 1, 1, 1),
- TEST_ff_f (pow, 1, -1, 1),
- TEST_ff_f (pow, 1, 1.25, 1),
- TEST_ff_f (pow, 1, -1.25, 1),
- TEST_ff_f (pow, 1, 0x1p62L, 1),
- TEST_ff_f (pow, 1, 0x1p63L, 1),
- TEST_ff_f (pow, 1, 0x1p64L, 1),
- TEST_ff_f (pow, 1, 0x1p72L, 1),
- TEST_ff_f (pow, 1, min_subnorm_value, 1),
- TEST_ff_f (pow, 1, -min_subnorm_value, 1),
/* pow (x, +-0) == 1. */
TEST_ff_f (pow, plus_infty, 0, 1),
TEST_ff_f (pow, plus_infty, minus_zero, 1),
TEST_ff_f (pow, minus_infty, 0, 1),
TEST_ff_f (pow, minus_infty, minus_zero, 1),
- TEST_ff_f (pow, 32.75L, 0, 1),
- TEST_ff_f (pow, 32.75L, minus_zero, 1),
- TEST_ff_f (pow, -32.75L, 0, 1),
- TEST_ff_f (pow, -32.75L, minus_zero, 1),
- TEST_ff_f (pow, 0x1p72L, 0, 1),
- TEST_ff_f (pow, 0x1p72L, minus_zero, 1),
- TEST_ff_f (pow, 0x1p-72L, 0, 1),
- TEST_ff_f (pow, 0x1p-72L, minus_zero, 1),
TEST_ff_f (pow, -0.1L, 1.1L, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM),
TEST_ff_f (pow, -0.1L, -1.1L, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM),
@@ -11373,22 +11254,6 @@ static const struct test_ff_f_data pow_test_data[] =
TEST_ff_f (pow, minus_zero, -0x1p127, plus_infty, DIVIDE_BY_ZERO_EXCEPTION|ERRNO_ERANGE),
TEST_ff_f (pow, minus_zero, -max_value, plus_infty, DIVIDE_BY_ZERO_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, 0x1p72L, 0x1p72L, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, 10, -0x1p72L, 0, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, max_value, max_value, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, 10, -max_value, 0, UNDERFLOW_EXCEPTION),
-
- TEST_ff_f (pow, 0, 1, 0),
- TEST_ff_f (pow, 0, 11, 0),
-
- TEST_ff_f (pow, minus_zero, 1, minus_zero),
- TEST_ff_f (pow, minus_zero, 11, minus_zero),
-
- TEST_ff_f (pow, 0, 2, 0),
- TEST_ff_f (pow, 0, 11.1L, 0),
-
- TEST_ff_f (pow, minus_zero, 2, 0),
- TEST_ff_f (pow, minus_zero, 11.1L, 0),
TEST_ff_f (pow, 0, plus_infty, 0),
TEST_ff_f (pow, minus_zero, plus_infty, 0),
TEST_ff_f (pow, 0, minus_infty, plus_infty, DIVIDE_BY_ZERO_EXCEPTION_OK),
@@ -11505,384 +11370,14 @@ static const struct test_ff_f_data pow_test_data[] =
TEST_ff_f (pow, minus_infty, -0x1p127, 0.0),
TEST_ff_f (pow, minus_infty, -max_value, 0.0),
- /* pow (+0, y) == +0 for y an odd integer > 0. */
- TEST_ff_f (pow, 0.0, 27, 0.0),
- TEST_ff_f (pow, 0.0, 0xffffff, 0.0),
-#ifndef TEST_FLOAT
- TEST_ff_f (pow, 0.0, 0x1.fffffffffffffp+52L, 0.0),
-#endif
-#ifdef TEST_LDOUBLE
-# if LDBL_MANT_DIG >= 64
- TEST_ff_f (pow, 0.0, 0x1.fffffffffffffffep+63L, 0.0),
-# endif
-# if LDBL_MANT_DIG >= 106
- TEST_ff_f (pow, 0.0, 0x1.ffffffffffffffffffffffffff8p+105L, 0.0),
-# endif
-# if LDBL_MANT_DIG >= 113
- TEST_ff_f (pow, 0.0, 0x1.ffffffffffffffffffffffffffffp+112L, 0.0),
-# endif
-#endif
-
- /* pow (-0, y) == -0 for y an odd integer > 0. */
- TEST_ff_f (pow, minus_zero, 27, minus_zero),
- TEST_ff_f (pow, minus_zero, 0xffffff, minus_zero),
- TEST_ff_f (pow, minus_zero, 0x1fffffe, plus_zero),
-#ifndef TEST_FLOAT
- TEST_ff_f (pow, minus_zero, 0x1.fffffffffffffp+52L, minus_zero),
- TEST_ff_f (pow, minus_zero, 0x1.fffffffffffffp+53L, plus_zero),
-#endif
-#ifdef TEST_LDOUBLE
-# if LDBL_MANT_DIG >= 64
- TEST_ff_f (pow, minus_zero, 0x1.fffffffffffffffep+63L, minus_zero),
- TEST_ff_f (pow, minus_zero, 0x1.fffffffffffffffep+64L, plus_zero),
-# endif
-# if LDBL_MANT_DIG >= 106
- TEST_ff_f (pow, minus_zero, 0x1.ffffffffffffffffffffffffff8p+105L, minus_zero),
- TEST_ff_f (pow, minus_zero, 0x1.ffffffffffffffffffffffffff8p+106L, plus_zero),
-# endif
-# if LDBL_MANT_DIG >= 113
- TEST_ff_f (pow, minus_zero, 0x1.ffffffffffffffffffffffffffffp+112L, minus_zero),
- TEST_ff_f (pow, minus_zero, 0x1.ffffffffffffffffffffffffffffp+113L, plus_zero),
-# endif
-#endif
-
- /* pow (+0, y) == +0 for y > 0 and not an odd integer. */
- TEST_ff_f (pow, 0.0, 4, 0.0),
- TEST_ff_f (pow, 0.0, 0x1p24, 0.0),
- TEST_ff_f (pow, 0.0, 0x1p127, 0.0),
- TEST_ff_f (pow, 0.0, max_value, 0.0),
- TEST_ff_f (pow, 0.0, min_subnorm_value, 0.0),
-
- /* pow (-0, y) == +0 for y > 0 and not an odd integer. */
- TEST_ff_f (pow, minus_zero, 4, 0.0),
- TEST_ff_f (pow, minus_zero, 0x1p24, 0.0),
- TEST_ff_f (pow, minus_zero, 0x1p127, 0.0),
- TEST_ff_f (pow, minus_zero, max_value, 0.0),
- TEST_ff_f (pow, minus_zero, min_subnorm_value, 0.0),
-
- TEST_ff_f (pow, 16, 0.25L, 2),
- TEST_ff_f (pow, 0x1p64L, 0.125L, 256),
- TEST_ff_f (pow, 2, 4, 16),
- TEST_ff_f (pow, 256, 8, 0x1p64L),
-
- TEST_ff_f (pow, 0.75L, 1.25L, 0.697953644326574699205914060237425566L),
-
-#if defined TEST_DOUBLE || defined TEST_LDOUBLE
- TEST_ff_f (pow, -7.49321e+133, -9.80818e+16, 0, UNDERFLOW_EXCEPTION),
-#endif
-
- TEST_ff_f (pow, -1.0, -0xffffff, -1.0),
- TEST_ff_f (pow, -1.0, -0x1fffffe, 1.0),
-#ifndef TEST_FLOAT
- TEST_ff_f (pow, -1.0, -0x1.fffffffffffffp+52L, -1.0),
- TEST_ff_f (pow, -1.0, -0x1.fffffffffffffp+53L, 1.0),
-#endif
-#ifdef TEST_LDOUBLE
-# if LDBL_MANT_DIG >= 64
- TEST_ff_f (pow, -1.0, -0x1.fffffffffffffffep+63L, -1.0),
- TEST_ff_f (pow, -1.0, -0x1.fffffffffffffffep+64L, 1.0),
-# endif
-# if LDBL_MANT_DIG >= 106
- TEST_ff_f (pow, -1.0, -0x1.ffffffffffffffffffffffffff8p+105L, -1.0),
- TEST_ff_f (pow, -1.0, -0x1.ffffffffffffffffffffffffff8p+106L, 1.0),
-# endif
-# if LDBL_MANT_DIG >= 113
- TEST_ff_f (pow, -1.0, -0x1.ffffffffffffffffffffffffffffp+112L, -1.0),
- TEST_ff_f (pow, -1.0, -0x1.ffffffffffffffffffffffffffffp+113L, 1.0),
-# endif
-#endif
- TEST_ff_f (pow, -1.0, -max_value, 1.0),
-
- TEST_ff_f (pow, -1.0, 0xffffff, -1.0),
- TEST_ff_f (pow, -1.0, 0x1fffffe, 1.0),
-#ifndef TEST_FLOAT
- TEST_ff_f (pow, -1.0, 0x1.fffffffffffffp+52L, -1.0),
- TEST_ff_f (pow, -1.0, 0x1.fffffffffffffp+53L, 1.0),
-#endif
-#ifdef TEST_LDOUBLE
-# if LDBL_MANT_DIG >= 64
- TEST_ff_f (pow, -1.0, 0x1.fffffffffffffffep+63L, -1.0),
- TEST_ff_f (pow, -1.0, 0x1.fffffffffffffffep+64L, 1.0),
-# endif
-# if LDBL_MANT_DIG >= 106
- TEST_ff_f (pow, -1.0, 0x1.ffffffffffffffffffffffffff8p+105L, -1.0),
- TEST_ff_f (pow, -1.0, 0x1.ffffffffffffffffffffffffff8p+106L, 1.0),
-# endif
-# if LDBL_MANT_DIG >= 113
- TEST_ff_f (pow, -1.0, 0x1.ffffffffffffffffffffffffffffp+112L, -1.0),
- TEST_ff_f (pow, -1.0, 0x1.ffffffffffffffffffffffffffffp+113L, 1.0),
-# endif
-#endif
- TEST_ff_f (pow, -1.0, max_value, 1.0),
-
- TEST_ff_f (pow, -2.0, 126, 0x1p126),
- TEST_ff_f (pow, -2.0, 127, -0x1p127),
- /* Allow inexact results for float to be considered to underflow. */
- TEST_ff_f (pow, -2.0, -126, 0x1p-126, UNDERFLOW_EXCEPTION_OK_FLOAT),
- TEST_ff_f (pow, -2.0, -127, -0x1p-127, UNDERFLOW_EXCEPTION_OK_FLOAT),
-
- TEST_ff_f (pow, -2.0, -0xffffff, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -2.0, -0x1fffffe, plus_zero, UNDERFLOW_EXCEPTION),
-#ifndef TEST_FLOAT
- TEST_ff_f (pow, -2.0, -0x1.fffffffffffffp+52L, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -2.0, -0x1.fffffffffffffp+53L, plus_zero, UNDERFLOW_EXCEPTION),
-#endif
-#ifdef TEST_LDOUBLE
-# if LDBL_MANT_DIG >= 64
- TEST_ff_f (pow, -2.0, -0x1.fffffffffffffffep+63L, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -2.0, -0x1.fffffffffffffffep+64L, plus_zero, UNDERFLOW_EXCEPTION),
-# endif
-# if LDBL_MANT_DIG >= 106
- TEST_ff_f (pow, -2.0, -0x1.ffffffffffffffffffffffffff8p+105L, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -2.0, -0x1.ffffffffffffffffffffffffff8p+106L, plus_zero, UNDERFLOW_EXCEPTION),
-# endif
-# if LDBL_MANT_DIG >= 113
- TEST_ff_f (pow, -2.0, -0x1.ffffffffffffffffffffffffffffp+112L, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -2.0, -0x1.ffffffffffffffffffffffffffffp+113L, plus_zero, UNDERFLOW_EXCEPTION),
-# endif
-#endif
- TEST_ff_f (pow, -2.0, -max_value, plus_zero, UNDERFLOW_EXCEPTION),
-
- TEST_ff_f (pow, -2.0, 0xffffff, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -2.0, 0x1fffffe, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-#ifndef TEST_FLOAT
- TEST_ff_f (pow, -2.0, 0x1.fffffffffffffp+52L, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -2.0, 0x1.fffffffffffffp+53L, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-#endif
-#ifdef TEST_LDOUBLE
-# if LDBL_MANT_DIG >= 64
- TEST_ff_f (pow, -2.0, 0x1.fffffffffffffffep+63L, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -2.0, 0x1.fffffffffffffffep+64L, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-# endif
-# if LDBL_MANT_DIG >= 106
- TEST_ff_f (pow, -2.0, 0x1.ffffffffffffffffffffffffff8p+105L, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -2.0, 0x1.ffffffffffffffffffffffffff8p+106L, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-# endif
-# if LDBL_MANT_DIG >= 113
- TEST_ff_f (pow, -2.0, 0x1.ffffffffffffffffffffffffffffp+112L, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -2.0, 0x1.ffffffffffffffffffffffffffffp+113L, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-# endif
-#endif
- TEST_ff_f (pow, -2.0, max_value, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-
TEST_ff_f (pow, -max_value, 0.5, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM),
TEST_ff_f (pow, -max_value, 1.5, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM),
TEST_ff_f (pow, -max_value, 1000.5, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM),
- TEST_ff_f (pow, -max_value, -2, plus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -max_value, -3, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -max_value, 2, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -max_value, 3, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-
- TEST_ff_f (pow, -max_value, -0xffffff, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -max_value, -0x1fffffe, plus_zero, UNDERFLOW_EXCEPTION),
-#ifndef TEST_FLOAT
- TEST_ff_f (pow, -max_value, -0x1.fffffffffffffp+52L, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -max_value, -0x1.fffffffffffffp+53L, plus_zero, UNDERFLOW_EXCEPTION),
-#endif
-#ifdef TEST_LDOUBLE
-# if LDBL_MANT_DIG >= 64
- TEST_ff_f (pow, -max_value, -0x1.fffffffffffffffep+63L, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -max_value, -0x1.fffffffffffffffep+64L, plus_zero, UNDERFLOW_EXCEPTION),
-# endif
-# if LDBL_MANT_DIG >= 106
- TEST_ff_f (pow, -max_value, -0x1.ffffffffffffffffffffffffff8p+105L, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -max_value, -0x1.ffffffffffffffffffffffffff8p+106L, plus_zero, UNDERFLOW_EXCEPTION),
-# endif
-# if LDBL_MANT_DIG >= 113
- TEST_ff_f (pow, -max_value, -0x1.ffffffffffffffffffffffffffffp+112L, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -max_value, -0x1.ffffffffffffffffffffffffffffp+113L, plus_zero, UNDERFLOW_EXCEPTION),
-# endif
-#endif
- TEST_ff_f (pow, -max_value, -max_value, plus_zero, UNDERFLOW_EXCEPTION),
-
- TEST_ff_f (pow, -max_value, 0xffffff, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -max_value, 0x1fffffe, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-#ifndef TEST_FLOAT
- TEST_ff_f (pow, -max_value, 0x1.fffffffffffffp+52L, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -max_value, 0x1.fffffffffffffp+53L, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-#endif
-#ifdef TEST_LDOUBLE
-# if LDBL_MANT_DIG >= 64
- TEST_ff_f (pow, -max_value, 0x1.fffffffffffffffep+63L, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -max_value, 0x1.fffffffffffffffep+64L, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-# endif
-# if LDBL_MANT_DIG >= 106
- TEST_ff_f (pow, -max_value, 0x1.ffffffffffffffffffffffffff8p+105L, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -max_value, 0x1.ffffffffffffffffffffffffff8p+106L, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-# endif
-# if LDBL_MANT_DIG >= 113
- TEST_ff_f (pow, -max_value, 0x1.ffffffffffffffffffffffffffffp+112L, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -max_value, 0x1.ffffffffffffffffffffffffffffp+113L, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-# endif
-#endif
- TEST_ff_f (pow, -max_value, max_value, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-
- TEST_ff_f (pow, -0.5, 126, 0x1p-126),
- TEST_ff_f (pow, -0.5, 127, -0x1p-127),
- TEST_ff_f (pow, -0.5, -126, 0x1p126),
- TEST_ff_f (pow, -0.5, -127, -0x1p127),
-
- TEST_ff_f (pow, -0.5, -0xffffff, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -0.5, -0x1fffffe, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-#ifndef TEST_FLOAT
- TEST_ff_f (pow, -0.5, -0x1.fffffffffffffp+52L, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -0.5, -0x1.fffffffffffffp+53L, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-#endif
-#ifdef TEST_LDOUBLE
-# if LDBL_MANT_DIG >= 64
- TEST_ff_f (pow, -0.5, -0x1.fffffffffffffffep+63L, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -0.5, -0x1.fffffffffffffffep+64L, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-# endif
-# if LDBL_MANT_DIG >= 106
- TEST_ff_f (pow, -0.5, -0x1.ffffffffffffffffffffffffff8p+105L, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -0.5, -0x1.ffffffffffffffffffffffffff8p+106L, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-# endif
-# if LDBL_MANT_DIG >= 113
- TEST_ff_f (pow, -0.5, -0x1.ffffffffffffffffffffffffffffp+112L, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -0.5, -0x1.ffffffffffffffffffffffffffffp+113L, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-# endif
-#endif
- TEST_ff_f (pow, -0.5, -max_value, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-
- TEST_ff_f (pow, -0.5, 0xffffff, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -0.5, 0x1fffffe, plus_zero, UNDERFLOW_EXCEPTION),
-#ifndef TEST_FLOAT
- TEST_ff_f (pow, -0.5, 0x1.fffffffffffffp+52L, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -0.5, 0x1.fffffffffffffp+53L, plus_zero, UNDERFLOW_EXCEPTION),
-#endif
-#ifdef TEST_LDOUBLE
-# if LDBL_MANT_DIG >= 64
- TEST_ff_f (pow, -0.5, 0x1.fffffffffffffffep+63L, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -0.5, 0x1.fffffffffffffffep+64L, plus_zero, UNDERFLOW_EXCEPTION),
-# endif
-# if LDBL_MANT_DIG >= 106
- TEST_ff_f (pow, -0.5, 0x1.ffffffffffffffffffffffffff8p+105L, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -0.5, 0x1.ffffffffffffffffffffffffff8p+106L, plus_zero, UNDERFLOW_EXCEPTION),
-# endif
-# if LDBL_MANT_DIG >= 113
- TEST_ff_f (pow, -0.5, 0x1.ffffffffffffffffffffffffffffp+112L, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -0.5, 0x1.ffffffffffffffffffffffffffffp+113L, plus_zero, UNDERFLOW_EXCEPTION),
-# endif
-#endif
- TEST_ff_f (pow, -0.5, max_value, plus_zero, UNDERFLOW_EXCEPTION),
TEST_ff_f (pow, -min_value, 0.5, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM),
TEST_ff_f (pow, -min_value, 1.5, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM),
TEST_ff_f (pow, -min_value, 1000.5, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM),
- TEST_ff_f (pow, -min_value, -2, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -min_value, -3, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- /* Allow inexact results to be considered to underflow. */
- TEST_ff_f (pow, -min_value, 1, -min_value, UNDERFLOW_EXCEPTION_OK),
- TEST_ff_f (pow, -min_value, 2, plus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -min_value, 3, minus_zero, UNDERFLOW_EXCEPTION),
-
- TEST_ff_f (pow, -min_value, -0xffffff, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -min_value, -0x1fffffe, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-#ifndef TEST_FLOAT
- TEST_ff_f (pow, -min_value, -0x1.fffffffffffffp+52L, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -min_value, -0x1.fffffffffffffp+53L, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-#endif
-#ifdef TEST_LDOUBLE
-# if LDBL_MANT_DIG >= 64
- TEST_ff_f (pow, -min_value, -0x1.fffffffffffffffep+63L, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -min_value, -0x1.fffffffffffffffep+64L, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-# endif
-# if LDBL_MANT_DIG >= 106
- TEST_ff_f (pow, -min_value, -0x1.ffffffffffffffffffffffffff8p+105L, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -min_value, -0x1.ffffffffffffffffffffffffff8p+106L, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-# endif
-# if LDBL_MANT_DIG >= 113
- TEST_ff_f (pow, -min_value, -0x1.ffffffffffffffffffffffffffffp+112L, minus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
- TEST_ff_f (pow, -min_value, -0x1.ffffffffffffffffffffffffffffp+113L, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-# endif
-#endif
- TEST_ff_f (pow, -min_value, -max_value, plus_infty, OVERFLOW_EXCEPTION|ERRNO_ERANGE),
-
- TEST_ff_f (pow, -min_value, 0xffffff, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -min_value, 0x1fffffe, plus_zero, UNDERFLOW_EXCEPTION),
-#ifndef TEST_FLOAT
- TEST_ff_f (pow, -min_value, 0x1.fffffffffffffp+52L, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -min_value, 0x1.fffffffffffffp+53L, plus_zero, UNDERFLOW_EXCEPTION),
-#endif
-#ifdef TEST_LDOUBLE
-# if LDBL_MANT_DIG >= 64
- TEST_ff_f (pow, -min_value, 0x1.fffffffffffffffep+63L, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -min_value, 0x1.fffffffffffffffep+64L, plus_zero, UNDERFLOW_EXCEPTION),
-# endif
-# if LDBL_MANT_DIG >= 106
- TEST_ff_f (pow, -min_value, 0x1.ffffffffffffffffffffffffff8p+105L, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -min_value, 0x1.ffffffffffffffffffffffffff8p+106L, plus_zero, UNDERFLOW_EXCEPTION),
-# endif
-# if LDBL_MANT_DIG >= 113
- TEST_ff_f (pow, -min_value, 0x1.ffffffffffffffffffffffffffffp+112L, minus_zero, UNDERFLOW_EXCEPTION),
- TEST_ff_f (pow, -min_value, 0x1.ffffffffffffffffffffffffffffp+113L, plus_zero, UNDERFLOW_EXCEPTION),
-# endif
-#endif
- TEST_ff_f (pow, -min_value, max_value, plus_zero, UNDERFLOW_EXCEPTION),
-
- TEST_ff_f (pow, 0x0.ffffffp0, 10, 0.999999403953712118183885036774764444747L),
- TEST_ff_f (pow, 0x0.ffffffp0, 100, 0.999994039553108359406305079606228341585L),
- TEST_ff_f (pow, 0x0.ffffffp0, 1000, 0.9999403971297699052276650144650733772182L),
- TEST_ff_f (pow, 0x0.ffffffp0, 0x1p24, 0.3678794302077803437135155590023422899744L),
- TEST_ff_f (pow, 0x0.ffffffp0, 0x1p30, 1.603807831524924233828134753069728224044e-28L),
- TEST_ff_f (pow, 0x0.ffffffp0, 0x1.234566p30, 2.374884712135295099971443365381007297732e-32L),
- TEST_ff_f (pow, 0x0.ffffffp0, -10, 1.000000596046643153205170848674671339688L),
- TEST_ff_f (pow, 0x0.ffffffp0, -100, 1.000005960482418779499387594989252621451L),
- TEST_ff_f (pow, 0x0.ffffffp0, -1000, 1.000059606422943986382898964231519867906L),
- TEST_ff_f (pow, 0x0.ffffffp0, -0x1p24, 2.7182819094701610539628664526874952929416L),
- TEST_ff_f (pow, 0x0.ffffffp0, -0x1p30, 6.2351609734265057988914412331288163636075e+27L),
- TEST_ff_f (pow, 0x0.ffffffp0, -0x1.234566p30, 4.2107307141696353498921307077142537353515e+31L),
- TEST_ff_f (pow, 0x1.000002p0, 0x1p24, 7.3890552180866447284268641248075832310141L),
- TEST_ff_f (pow, 0x1.000002p0, 0x1.234566p29, 4.2107033006507495188536371520637025716256e+31L),
- TEST_ff_f (pow, 0x1.000002p0, -0x1.234566p29, 2.3749001736727769098946062325205705312166e-32L),
-
-#if !defined TEST_FLOAT
- TEST_ff_f (pow, 0x0.fffffffffffff8p0L, 0x1.23456789abcdfp62L, 1.0118762747827252817436395051178295138220e-253L),
- TEST_ff_f (pow, 0x0.fffffffffffff8p0L, -0x1.23456789abcdfp62L, 9.8826311568054561811190162420900667121992e+252L),
- TEST_ff_f (pow, 0x1.0000000000001p0L, 0x1.23456789abcdfp61L, 9.8826311568044974397135026217687399395481e+252L),
- TEST_ff_f (pow, 0x1.0000000000001p0L, -0x1.23456789abcdfp61L, 1.0118762747828234466621210689458255908670e-253L),
-#endif
-
-#if defined TEST_LDOUBLE && LDBL_MANT_DIG >= 64 && LDBL_MAX_EXP >= 16384
- TEST_ff_f (pow, 0x0.ffffffffffffffffp0L, 0x1.23456789abcdef0ep77L, 1.2079212226420368189981778807634890018840e-4048L),
- TEST_ff_f (pow, 0x0.ffffffffffffffffp0L, -0x1.23456789abcdef0ep77L, 8.2786855736563746280496724205839522148001e+4047L),
- TEST_ff_f (pow, 0x1.0000000000000002p0L, 0x1.23456789abcdef0ep76L, 8.2786855736563683535324500168799315131570e+4047L),
- TEST_ff_f (pow, 0x1.0000000000000002p0L, -0x1.23456789abcdef0ep76L, 1.2079212226420377344964713407722652880280e-4048L),
-#endif
-
-#if defined TEST_LDOUBLE && LDBL_MANT_DIG >= 113
- TEST_ff_f (pow, 0x0.ffffffffffffffffffffffffffff8p0L, 0x1.23456789abcdef0123456789abcdp126L, 1.2079212226420440237790185999151440179953e-4048L),
- TEST_ff_f (pow, 0x0.ffffffffffffffffffffffffffff8p0L, -0x1.23456789abcdef0123456789abcdp126L, 8.2786855736563252489063231915535105363602e+4047L),
- TEST_ff_f (pow, 0x1.0000000000000000000000000001p0L, 0x1.23456789abcdef0123456789abcdp125L, 8.2786855736563252489063231915423647547782e+4047L),
- TEST_ff_f (pow, 0x1.0000000000000000000000000001p0L, -0x1.23456789abcdef0123456789abcdp125L, 1.2079212226420440237790185999167702696503e-4048L),
-#endif
-
-#if defined TEST_LDOUBLE && LDBL_MAX_EXP >= 16384
- TEST_ff_f (pow, 1e4932L, 0.75L, 1e3699L),
- TEST_ff_f (pow, 1e4928L, 0.75L, 1e3696L),
- TEST_ff_f (pow, 1e4924L, 0.75L, 1e3693L),
- TEST_ff_f (pow, 1e4920L, 0.75L, 1e3690L),
- TEST_ff_f (pow, 10.0L, 4932.0L, 1e4932L),
- TEST_ff_f (pow, 10.0L, 4931.0L, 1e4931L),
- TEST_ff_f (pow, 10.0L, 4930.0L, 1e4930L),
- TEST_ff_f (pow, 10.0L, 4929.0L, 1e4929L),
- TEST_ff_f (pow, 10.0L, -4931.0L, 1e-4931L),
- TEST_ff_f (pow, 10.0L, -4930.0L, 1e-4930L),
- TEST_ff_f (pow, 10.0L, -4929.0L, 1e-4929L),
- TEST_ff_f (pow, 1e27L, 182.0L, 1e4914L),
- TEST_ff_f (pow, 1e27L, -182.0L, 1e-4914L),
-#endif
-
- TEST_ff_f (pow, min_subnorm_value, min_subnorm_value, 1.0L),
- TEST_ff_f (pow, min_subnorm_value, -min_subnorm_value, 1.0L),
- TEST_ff_f (pow, max_value, min_subnorm_value, 1.0L),
- TEST_ff_f (pow, max_value, -min_subnorm_value, 1.0L),
- TEST_ff_f (pow, 0.99L, min_subnorm_value, 1.0L),
- TEST_ff_f (pow, 0.99L, -min_subnorm_value, 1.0L),
- TEST_ff_f (pow, 1.01L, min_subnorm_value, 1.0L),
- TEST_ff_f (pow, 1.01L, -min_subnorm_value, 1.0L),
-
- TEST_ff_f (pow, 2.0L, -100000.0L, plus_zero, UNDERFLOW_EXCEPTION),
+ AUTO_TESTS_ff_f (pow, tonearest),
};
static void
@@ -11897,8 +11392,7 @@ pow_test (void)
static const struct test_ff_f_data pow_tonearest_test_data[] =
{
- TEST_ff_f (pow, 1.0625L, 1.125L, 1.070582293028761362162622578677070098674L),
- TEST_ff_f (pow, 1.5L, 1.03125L, 1.519127098714743184071644334163037684948L),
+ AUTO_TESTS_ff_f (pow, tonearest),
};
static void