about summary refs log tree commit diff
path: root/math/auto-libm-test-out-hypot
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2017-02-06 18:41:20 +0000
committerJoseph Myers <joseph@codesourcery.com>2017-02-06 18:41:20 +0000
commit4f1bc131db81042e8e8d1f829ed18e28d9c56b58 (patch)
tree74c14e29f2928fade2d9f27a664915ee4897ebc2 /math/auto-libm-test-out-hypot
parent5cd81881e221d2943ca41b2da7bb87c0ede3386b (diff)
downloadglibc-4f1bc131db81042e8e8d1f829ed18e28d9c56b58.tar.gz
glibc-4f1bc131db81042e8e8d1f829ed18e28d9c56b58.tar.xz
glibc-4f1bc131db81042e8e8d1f829ed18e28d9c56b58.zip
Split auto-libm-test-out by function.
math/auto-libm-test-out is, at over 30 MB, by far the largest file in
the glibc source tree.  This patch splits it by function, so reducing
it to auto-libm-test-out-<func> files that are all under 5 MB in size.

This is preliminary to splitting up libm-test.inc as well so that each
function's tests can also be processed separately by
gen-libm-test.pl.  As a preliminary patch it doesn't actually
implement that step; rather, all the separate files get concatenated
by the Makefile to produce the monolithic auto-libm-test-out file
again as an input to gen-libm-test.pl.  (The concatentation is
identical to the file in the source tree before this patch.)

Even this preliminary step, however, is of use independent of
splitting up libm-test.inc: some tests for csin and csinh have not
been moved to auto-libm-test-in because they result in
auto-libm-test-out generation taking several minutes rather than a few
seconds (all released MPC versions are very slow for certain sin /
sinh inputs; there are some old improvements in MPC mainline which
should eventually become MPC 1.1, but the complex inverse trig and
hyperbolic functions are slow even in MPC mainline and have yet to be
moved to auto-libm-test-in at all), and it seems much more reasonable
to add such inputs to auto-libm-test-in when it will only slow down
regeneration for particular functions than when it will slow down
regeneration globally.

gen-auto-libm-tests still parses the whole input file, but only
generates output for the requested function.  This ensures bad syntax
in the file is always detected, and parsing the whole file is quick;
it's output generation that is comparatively slow for some functions.

Tested for x86_64.

	* math/gen-auto-libm-tests.c: Update comment about use of program.
	(generate_output): Add argument FUNCTION.
	(main): Require extra argument.  Pass function name to
	generate_output.
	* math/Makefile (generated): Add auto-libm-test-out.
	(libm-test-funcs-auto): New variable.
	(auto-libm-test-out-files): New variable.
	($(objpfx)libm-test.c): Depend on $(auto-libm-test-out-files).
	Concatenate those files to form $(objpfx)auto-libm-test-out and
	use it as input to gen-libm-test.pl.
	* math/README.libm-test: Update.
	* math/auto-libm-test-out: Remove.
	* math/auto-libm-test-out-acos: New generated file.
	* math/auto-libm-test-out-acosh: Likewise.
	* math/auto-libm-test-out-asin: Likewise.
	* math/auto-libm-test-out-asinh: Likewise.
	* math/auto-libm-test-out-atan: Likewise.
	* math/auto-libm-test-out-atan2: Likewise.
	* math/auto-libm-test-out-atanh: Likewise.
	* math/auto-libm-test-out-cabs: Likewise.
	* math/auto-libm-test-out-carg: Likewise.
	* math/auto-libm-test-out-cbrt: Likewise.
	* math/auto-libm-test-out-ccos: Likewise.
	* math/auto-libm-test-out-ccosh: Likewise.
	* math/auto-libm-test-out-cexp: Likewise.
	* math/auto-libm-test-out-clog: Likewise.
	* math/auto-libm-test-out-clog10: Likewise.
	* math/auto-libm-test-out-cos: Likewise.
	* math/auto-libm-test-out-cosh: Likewise.
	* math/auto-libm-test-out-cpow: Likewise.
	* math/auto-libm-test-out-csin: Likewise.
	* math/auto-libm-test-out-csinh: Likewise.
	* math/auto-libm-test-out-csqrt: Likewise.
	* math/auto-libm-test-out-ctan: Likewise.
	* math/auto-libm-test-out-ctanh: Likewise.
	* math/auto-libm-test-out-erf: Likewise.
	* math/auto-libm-test-out-erfc: Likewise.
	* math/auto-libm-test-out-exp: Likewise.
	* math/auto-libm-test-out-exp10: Likewise.
	* math/auto-libm-test-out-exp2: Likewise.
	* math/auto-libm-test-out-expm1: Likewise.
	* math/auto-libm-test-out-fma: Likewise.
	* math/auto-libm-test-out-hypot: Likewise.
	* math/auto-libm-test-out-j0: Likewise.
	* math/auto-libm-test-out-j1: Likewise.
	* math/auto-libm-test-out-jn: Likewise.
	* math/auto-libm-test-out-lgamma: Likewise.
	* math/auto-libm-test-out-log: Likewise.
	* math/auto-libm-test-out-log10: Likewise.
	* math/auto-libm-test-out-log1p: Likewise.
	* math/auto-libm-test-out-log2: Likewise.
	* math/auto-libm-test-out-pow: Likewise.
	* math/auto-libm-test-out-sin: Likewise.
	* math/auto-libm-test-out-sincos: Likewise.
	* math/auto-libm-test-out-sinh: Likewise.
	* math/auto-libm-test-out-sqrt: Likewise.
	* math/auto-libm-test-out-tan: Likewise.
	* math/auto-libm-test-out-tanh: Likewise.
	* math/auto-libm-test-out-tgamma: Likewise.
	* math/auto-libm-test-out-y0: Likewise.
	* math/auto-libm-test-out-y1: Likewise.
	* math/auto-libm-test-out-yn: Likewise.
Diffstat (limited to 'math/auto-libm-test-out-hypot')
-rw-r--r--math/auto-libm-test-out-hypot14767
1 files changed, 14767 insertions, 0 deletions
diff --git a/math/auto-libm-test-out-hypot b/math/auto-libm-test-out-hypot
new file mode 100644
index 0000000000..edf8b70c11
--- /dev/null
+++ b/math/auto-libm-test-out-hypot
@@ -0,0 +1,14767 @@
+hypot 0 0
+= hypot downward binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+hypot 0 -0
+= hypot downward binary32 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary32 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary32 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary32 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary64 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary64 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary64 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary64 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward intel96 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest intel96 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero intel96 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward intel96 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward m68k96 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward m68k96 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary128 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary128 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary128 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary128 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward ibm128 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward ibm128 0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+hypot -0 0
+= hypot downward binary32 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary32 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary32 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary32 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary64 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary64 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary64 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary64 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward intel96 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest intel96 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero intel96 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward intel96 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward m68k96 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest m68k96 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero m68k96 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward m68k96 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary128 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary128 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary128 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary128 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward ibm128 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest ibm128 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero ibm128 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward ibm128 -0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+hypot -0 -0
+= hypot downward binary32 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary32 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary32 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary32 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary64 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary64 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary64 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary64 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward intel96 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest intel96 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero intel96 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward intel96 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward m68k96 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest m68k96 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero m68k96 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward m68k96 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary128 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary128 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary128 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary128 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward ibm128 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest ibm128 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero ibm128 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward ibm128 -0x0p+0 -0x0p+0 : 0x0p+0 : inexact-ok
+hypot 0.7 12.4
+= hypot downward binary32 0xb.33334p-4 0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot tonearest binary32 0xb.33334p-4 0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot towardzero binary32 0xb.33334p-4 0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot upward binary32 0xb.33334p-4 0xc.66667p+0 : 0xc.6b745p+0 : inexact-ok
+= hypot downward binary64 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot tonearest binary64 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot towardzero binary64 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot upward binary64 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff6p+0 : inexact-ok
+= hypot downward intel96 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot tonearest intel96 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot towardzero intel96 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot upward intel96 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae8p+0 : inexact-ok
+= hypot downward m68k96 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot upward m68k96 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae8p+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba965p+0 : inexact-ok
+= hypot downward ibm128 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba94p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba98p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba94p+0 : inexact-ok
+= hypot upward ibm128 0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba98p+0 : inexact-ok
+= hypot downward binary32 0xb.33334p-4 0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot tonearest binary32 0xb.33334p-4 0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot towardzero binary32 0xb.33334p-4 0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot upward binary32 0xb.33334p-4 0xc.66666p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot downward binary64 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot tonearest binary64 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot towardzero binary64 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot upward binary64 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c58p+0 : inexact-ok
+= hypot downward intel96 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot tonearest intel96 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot towardzero intel96 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot upward intel96 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot downward m68k96 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot upward m68k96 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b91ap+0 : inexact-ok
+= hypot downward ibm128 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot upward ibm128 0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b94p+0 : inexact-ok
+= hypot downward binary64 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot tonearest binary64 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot towardzero binary64 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot upward binary64 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e728p+0 : inexact-ok
+= hypot downward intel96 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot tonearest intel96 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot towardzero intel96 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot upward intel96 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723eap+0 : inexact-ok
+= hypot downward m68k96 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot upward m68k96 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723eap+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003d88p+0 : inexact-ok
+= hypot downward ibm128 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot upward ibm128 0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b004p+0 : inexact-ok
+= hypot downward binary64 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot tonearest binary64 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot towardzero binary64 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot upward binary64 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot downward intel96 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot tonearest intel96 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot towardzero intel96 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot upward intel96 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bedp+0 : inexact-ok
+= hypot downward m68k96 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot upward m68k96 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bedp+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afd8p+0 : inexact-ok
+= hypot downward ibm128 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot upward ibm128 0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152bp+0 : inexact-ok
+= hypot downward intel96 0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot tonearest intel96 0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot towardzero intel96 0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot upward intel96 0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot downward m68k96 0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot upward m68k96 0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c071p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c0718p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c071p+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c0718p+0 : inexact-ok
+= hypot downward ibm128 0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c04p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c08p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c04p+0 : inexact-ok
+= hypot upward ibm128 0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c08p+0 : inexact-ok
+= hypot downward intel96 0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot tonearest intel96 0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot towardzero intel96 0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot upward intel96 0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot downward m68k96 0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot upward m68k96 0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14c68p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14c7p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14c68p+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14c7p+0 : inexact-ok
+= hypot downward ibm128 0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot upward ibm128 0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd15p+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d5972p+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598b8p+0 : inexact-ok
+= hypot downward ibm128 0xb.33334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot upward ibm128 0xb.33334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d59cp+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594b8p+0 : inexact-ok
+= hypot downward ibm128 0xb.33334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot upward ibm128 0xb.33334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot downward binary32 0xb.33333p-4 0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot tonearest binary32 0xb.33333p-4 0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot towardzero binary32 0xb.33333p-4 0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot upward binary32 0xb.33333p-4 0xc.66667p+0 : 0xc.6b745p+0 : inexact-ok
+= hypot downward binary64 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot tonearest binary64 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot towardzero binary64 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot upward binary64 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot downward intel96 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot tonearest intel96 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot towardzero intel96 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot upward intel96 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot downward m68k96 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot upward m68k96 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d8108p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d84p+0 : inexact-ok
+= hypot downward binary32 0xb.33333p-4 0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot tonearest binary32 0xb.33333p-4 0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot towardzero binary32 0xb.33333p-4 0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot upward binary32 0xb.33333p-4 0xc.66666p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot downward binary64 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot tonearest binary64 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot towardzero binary64 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot upward binary64 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a4550ap+0 : inexact-ok
+= hypot downward intel96 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot tonearest intel96 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot towardzero intel96 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot upward intel96 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aedp+0 : inexact-ok
+= hypot downward m68k96 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot upward m68k96 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aedp+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40beb8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40becp+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40beb8p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40becp+0 : inexact-ok
+= hypot downward ibm128 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40bcp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40bcp+0 : inexact-ok
+= hypot upward ibm128 0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40cp+0 : inexact-ok
+= hypot downward binary64 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot tonearest binary64 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot towardzero binary64 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot upward binary64 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot downward intel96 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot tonearest intel96 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot towardzero intel96 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot upward intel96 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2cp+0 : inexact-ok
+= hypot downward m68k96 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot upward m68k96 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2cp+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a428p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a8p+0 : inexact-ok
+= hypot downward binary64 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot tonearest binary64 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot towardzero binary64 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot upward binary64 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot downward intel96 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot tonearest intel96 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot towardzero intel96 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot upward intel96 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652fp+0 : inexact-ok
+= hypot downward m68k96 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot upward m68k96 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652fp+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aaa78p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aa8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aacp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aa8p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aacp+0 : inexact-ok
+= hypot downward intel96 0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot tonearest intel96 0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot towardzero intel96 0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot upward intel96 0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot downward m68k96 0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot upward m68k96 0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04cp+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04c8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04cp+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04c8p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d08p+0 : inexact-ok
+= hypot downward intel96 0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot tonearest intel96 0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot towardzero intel96 0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot upward intel96 0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot downward m68k96 0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot upward m68k96 0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbb2p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbb28p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbb2p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbb28p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffb8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbcp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffb8p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbcp+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b7238p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b7238p+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0820b6b9245853390b7228p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0820b6b9245853390b7228p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b73dp+0 : inexact-ok
+= hypot downward ibm128 0xb.33333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b74p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b74p+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6fc8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6fdp+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6fc8p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6fdp+0 : inexact-ok
+= hypot downward ibm128 0xb.33333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6cp+0 : inexact-ok
+= hypot upward ibm128 0xb.33333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot downward binary64 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest binary64 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero binary64 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward binary64 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward intel96 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot tonearest intel96 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot towardzero intel96 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot upward intel96 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fcp+0 : inexact-ok
+= hypot downward m68k96 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot towardzero m68k96 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot upward m68k96 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fcp+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdf98p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcep+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcep+0 : inexact-ok
+= hypot downward binary64 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest binary64 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero binary64 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward binary64 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward intel96 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot tonearest intel96 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot towardzero intel96 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot upward intel96 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c48p+0 : inexact-ok
+= hypot downward m68k96 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot upward m68k96 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c48p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d94958p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d94cp+0 : inexact-ok
+= hypot downward binary64 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest binary64 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero binary64 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward binary64 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward intel96 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot tonearest intel96 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot towardzero intel96 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot upward intel96 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6fp+0 : inexact-ok
+= hypot downward m68k96 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot tonearest m68k96 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot towardzero m68k96 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot upward m68k96 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6fp+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057d8p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d058p+0 : inexact-ok
+= hypot downward binary64 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest binary64 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero binary64 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward binary64 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward intel96 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot tonearest intel96 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot towardzero intel96 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot upward intel96 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot downward m68k96 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot upward m68k96 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0f48p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a1p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0cp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a1p+0 : inexact-ok
+= hypot downward intel96 0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot tonearest intel96 0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot towardzero intel96 0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot upward intel96 0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd7p+0 : inexact-ok
+= hypot downward m68k96 0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot upward m68k96 0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd7p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f31p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f318p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f31p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f318p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8fp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f4p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8fp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f4p+0 : inexact-ok
+= hypot downward intel96 0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot tonearest intel96 0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot towardzero intel96 0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot upward intel96 0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot downward m68k96 0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot upward m68k96 0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5fap+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5fa8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5fap+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5fa8p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f6p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5cp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f6p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199aa8p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199c4p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a753419ap+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a753419984p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot downward binary64 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest binary64 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero binary64 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward binary64 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f5p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f5p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f410be92151798p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f410be921517cp+0 : inexact-ok
+= hypot downward binary64 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest binary64 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero binary64 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward binary64 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c41p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c41p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d62ap+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d62cp+0 : inexact-ok
+= hypot downward binary64 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest binary64 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero binary64 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward binary64 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e68p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e68p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f65753p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f657538p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f65753p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f657538p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f6578p+0 : inexact-ok
+= hypot downward binary64 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest binary64 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero binary64 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward binary64 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566bp+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566bp+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca07p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca04p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca08p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca04p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca08p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08ead8p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08e8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08ecp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08e8p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08ecp+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f576p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f5768p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f576p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f5768p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f54p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f58p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f54p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f58p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a0679926p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a0679926p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cce42c9a0679925p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cce42c9a0679925p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067993fp+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067993f8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067993fp+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067993f8p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067994p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067994p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798cp+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b49ep+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b4cp+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361eap+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361ea08p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361eap+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361ea08p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361e8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361ecp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361e8p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361ecp+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a088p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a0888p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a088p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a0888p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a0cp+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9a5p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e98p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e98p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9cp+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7e28p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33eab8p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33e8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33ecp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33e8p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33ecp+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e25bp+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e25bp+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd126416483e25ap+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd126416483e25ap+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e274p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e2748p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e274p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e2748p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e28p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e28p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e234p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e2348p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e234p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e2348p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e2p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e2p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b868p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b87p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b868p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b87p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410bcp+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c9a8p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4ccp+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c45488p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c458p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e65p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e4p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e8p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e4p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e8p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ca18p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ca2p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ca18p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ca2p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067c8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ccp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067c8p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ccp+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce36b8p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce34p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce38p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce34p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce38p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd871bp+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd871bp+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd1255a88cd871ap+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd1255a88cd871ap+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd87348p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd874p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd874p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86f4p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86f48p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86f4p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86f48p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86cp+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333333333333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333333333333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333333333333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333333333333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d8p+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward ibm128 0xb.33333333333333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333333333333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333333333333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot upward ibm128 0xb.33333333333333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970aap+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333333333333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333333333333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333333333333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333333333333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333333333333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333333333333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333333333333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot upward ibm128 0xb.33333333333333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d4p+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333333333333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333333333333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333333333333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333333333333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c24p+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333333333333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333333333333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333333333333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot upward ibm128 0xb.33333333333333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee29p+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8e8p+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333333333333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333333333333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333333333333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333333333333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333333333333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333333333333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333333333333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333333333333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d8p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cep+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cep+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970aap+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d4p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c24p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee29p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc67p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc67p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+hypot -0.7 12.4
+= hypot downward binary32 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot tonearest binary32 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot towardzero binary32 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot upward binary32 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b745p+0 : inexact-ok
+= hypot downward binary64 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot tonearest binary64 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot upward binary64 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot downward intel96 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot upward intel96 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot downward m68k96 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot upward m68k96 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d8108p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333p-4 0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d84p+0 : inexact-ok
+= hypot downward binary32 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot tonearest binary32 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot towardzero binary32 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot upward binary32 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot downward binary64 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot upward binary64 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a4550ap+0 : inexact-ok
+= hypot downward intel96 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot upward intel96 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aedp+0 : inexact-ok
+= hypot downward m68k96 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot upward m68k96 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aedp+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40beb8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40becp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40beb8p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40becp+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40bcp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40bcp+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333p-4 0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40cp+0 : inexact-ok
+= hypot downward binary64 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot upward binary64 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot downward intel96 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot upward intel96 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2cp+0 : inexact-ok
+= hypot downward m68k96 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot upward m68k96 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2cp+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a428p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333p-4 0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a8p+0 : inexact-ok
+= hypot downward binary64 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot upward binary64 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot downward intel96 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot upward intel96 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652fp+0 : inexact-ok
+= hypot downward m68k96 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot upward m68k96 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652fp+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aaa78p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aa8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aacp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aa8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333p-4 0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aacp+0 : inexact-ok
+= hypot downward intel96 -0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot upward intel96 -0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot downward m68k96 -0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot upward m68k96 -0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04cp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04c8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04cp+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04c8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333p-4 0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d08p+0 : inexact-ok
+= hypot downward intel96 -0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot upward intel96 -0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot downward m68k96 -0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot upward m68k96 -0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbb2p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbb28p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbb2p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbb28p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffb8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbcp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffb8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333p-4 0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbcp+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b7238p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b7238p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0820b6b9245853390b7228p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0820b6b9245853390b7228p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b73dp+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b74p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b74p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6fc8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6fdp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6fc8p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6fdp+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot downward binary32 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot tonearest binary32 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot towardzero binary32 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot upward binary32 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b745p+0 : inexact-ok
+= hypot downward binary64 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot upward binary64 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff6p+0 : inexact-ok
+= hypot downward intel96 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot upward intel96 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae8p+0 : inexact-ok
+= hypot downward m68k96 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot upward m68k96 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae8p+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba965p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba94p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba98p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba94p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33334p-4 0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba98p+0 : inexact-ok
+= hypot downward binary32 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot tonearest binary32 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot towardzero binary32 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot upward binary32 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot downward binary64 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot upward binary64 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c58p+0 : inexact-ok
+= hypot downward intel96 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot upward intel96 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot downward m68k96 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot upward m68k96 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b91ap+0 : inexact-ok
+= hypot downward ibm128 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33334p-4 0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b94p+0 : inexact-ok
+= hypot downward binary64 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot upward binary64 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e728p+0 : inexact-ok
+= hypot downward intel96 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot upward intel96 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723eap+0 : inexact-ok
+= hypot downward m68k96 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot upward m68k96 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723eap+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003d88p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.33334p-4 0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b004p+0 : inexact-ok
+= hypot downward binary64 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot upward binary64 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot downward intel96 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot upward intel96 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bedp+0 : inexact-ok
+= hypot downward m68k96 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot upward m68k96 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bedp+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afd8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot upward ibm128 -0xb.33334p-4 0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152bp+0 : inexact-ok
+= hypot downward intel96 -0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot upward intel96 -0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot downward m68k96 -0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot upward m68k96 -0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c071p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c0718p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c071p+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c0718p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c04p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c08p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c04p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33334p-4 0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c08p+0 : inexact-ok
+= hypot downward intel96 -0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot upward intel96 -0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot downward m68k96 -0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot upward m68k96 -0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14c68p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14c7p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14c68p+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14c7p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.33334p-4 0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd15p+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d5972p+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598b8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d59cp+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594b8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot downward binary64 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward binary64 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f5p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f5p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f410be92151798p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f410be921517cp+0 : inexact-ok
+= hypot downward binary64 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward binary64 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c41p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c41p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d62ap+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d62cp+0 : inexact-ok
+= hypot downward binary64 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward binary64 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e68p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e68p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f65753p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f657538p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f65753p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f657538p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f6578p+0 : inexact-ok
+= hypot downward binary64 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward binary64 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566bp+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566bp+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca07p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca04p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca08p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca04p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca08p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08ead8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08e8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08ecp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08e8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08ecp+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f576p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f5768p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f576p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f5768p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f54p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f58p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f54p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f58p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a0679926p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a0679926p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cce42c9a0679925p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cce42c9a0679925p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067993fp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067993f8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067993fp+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067993f8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067994p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067994p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot downward binary64 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward binary64 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward intel96 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot towardzero intel96 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot upward intel96 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fcp+0 : inexact-ok
+= hypot downward m68k96 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot upward m68k96 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fcp+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdf98p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcep+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcep+0 : inexact-ok
+= hypot downward binary64 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward binary64 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward intel96 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot upward intel96 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c48p+0 : inexact-ok
+= hypot downward m68k96 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot upward m68k96 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c48p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d94958p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d94cp+0 : inexact-ok
+= hypot downward binary64 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward binary64 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward intel96 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot tonearest intel96 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot towardzero intel96 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot upward intel96 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6fp+0 : inexact-ok
+= hypot downward m68k96 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot upward m68k96 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6fp+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057d8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d058p+0 : inexact-ok
+= hypot downward binary64 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward binary64 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward intel96 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot upward intel96 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot downward m68k96 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot upward m68k96 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0f48p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a1p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a1p+0 : inexact-ok
+= hypot downward intel96 -0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot upward intel96 -0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd7p+0 : inexact-ok
+= hypot downward m68k96 -0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot upward m68k96 -0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd7p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f31p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f318p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f31p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f318p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8fp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f4p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8fp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f4p+0 : inexact-ok
+= hypot downward intel96 -0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot upward intel96 -0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot downward m68k96 -0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot upward m68k96 -0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5fap+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5fa8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5fap+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5fa8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f6p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f6p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199aa8p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199c4p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a753419ap+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a753419984p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b868p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b87p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b868p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b87p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410bcp+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c9a8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4ccp+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c45488p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c458p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e65p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e4p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e8p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ca18p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ca2p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ca18p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ca2p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067c8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ccp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067c8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ccp+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce36b8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce34p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce38p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce34p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce38p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd871bp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd871bp+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd1255a88cd871ap+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd1255a88cd871ap+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd87348p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd874p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd874p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86f4p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86f48p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86f4p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86f48p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b49ep+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b4cp+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361eap+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361ea08p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361eap+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361ea08p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361e8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361ecp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361e8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361ecp+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a088p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a0888p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a088p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a0888p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a0cp+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9a5p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e98p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e98p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9cp+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7e28p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33eab8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33e8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33ecp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33e8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33ecp+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e25bp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e25bp+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd126416483e25ap+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd126416483e25ap+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e274p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e2748p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e274p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e2748p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e28p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e28p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e234p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e2348p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e234p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e2348p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e2p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e2p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333333333333333333p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d8p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cep+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cep+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333333333333333333p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970aap+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333333333333333333p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333333333333333333p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d4p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333333333333333333p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c24p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333333333333333333p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee29p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333333333333333333p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc67p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc67p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333333333333333333p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333333333333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333333333333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333333333333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333333333333333333333334p-4 0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d8p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333333333333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333333333333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333333333333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333333333333333333333334p-4 0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970aap+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333333333333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333333333333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333333333333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333333333333333333333334p-4 0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333333333333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333333333333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333333333333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333333333333333333333334p-4 0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d4p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333333333333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333333333333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333333333333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333333333333333333333334p-4 0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c24p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333333333333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333333333333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333333333333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333333333333333333333334p-4 0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee29p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8e8p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333333333333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333333333333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333333333333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333333333333333333333334p-4 0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333333333333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333333333333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333333333333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333333333333333333333334p-4 0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+hypot 0.7 -12.4
+= hypot downward binary32 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot tonearest binary32 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot towardzero binary32 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot upward binary32 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot downward binary64 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot tonearest binary64 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot towardzero binary64 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot upward binary64 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c58p+0 : inexact-ok
+= hypot downward intel96 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot tonearest intel96 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot towardzero intel96 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot upward intel96 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot downward m68k96 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot upward m68k96 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b91ap+0 : inexact-ok
+= hypot downward ibm128 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot upward ibm128 0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b94p+0 : inexact-ok
+= hypot downward binary32 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot tonearest binary32 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot towardzero binary32 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot upward binary32 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b745p+0 : inexact-ok
+= hypot downward binary64 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot tonearest binary64 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot towardzero binary64 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot upward binary64 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff6p+0 : inexact-ok
+= hypot downward intel96 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot tonearest intel96 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot towardzero intel96 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot upward intel96 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae8p+0 : inexact-ok
+= hypot downward m68k96 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot upward m68k96 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae8p+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba965p+0 : inexact-ok
+= hypot downward ibm128 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba94p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba98p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba94p+0 : inexact-ok
+= hypot upward ibm128 0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba98p+0 : inexact-ok
+= hypot downward binary64 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot tonearest binary64 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot towardzero binary64 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot upward binary64 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot downward intel96 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot tonearest intel96 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot towardzero intel96 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot upward intel96 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bedp+0 : inexact-ok
+= hypot downward m68k96 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot upward m68k96 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bedp+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afd8p+0 : inexact-ok
+= hypot downward ibm128 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot upward ibm128 0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152bp+0 : inexact-ok
+= hypot downward binary64 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot tonearest binary64 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot towardzero binary64 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot upward binary64 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e728p+0 : inexact-ok
+= hypot downward intel96 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot tonearest intel96 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot towardzero intel96 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot upward intel96 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723eap+0 : inexact-ok
+= hypot downward m68k96 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot upward m68k96 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723eap+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003d88p+0 : inexact-ok
+= hypot downward ibm128 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot upward ibm128 0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b004p+0 : inexact-ok
+= hypot downward intel96 0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot tonearest intel96 0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot towardzero intel96 0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot upward intel96 0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot downward m68k96 0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot upward m68k96 0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14c68p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14c7p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14c68p+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14c7p+0 : inexact-ok
+= hypot downward ibm128 0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot upward ibm128 0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd15p+0 : inexact-ok
+= hypot downward intel96 0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot tonearest intel96 0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot towardzero intel96 0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot upward intel96 0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot downward m68k96 0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot upward m68k96 0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c071p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c0718p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c071p+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c0718p+0 : inexact-ok
+= hypot downward ibm128 0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c04p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c08p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c04p+0 : inexact-ok
+= hypot upward ibm128 0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c08p+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d5972p+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594b8p+0 : inexact-ok
+= hypot downward ibm128 0xb.33334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot upward ibm128 0xb.33334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot downward binary128 0xb.33334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot tonearest binary128 0xb.33334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot towardzero binary128 0xb.33334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot upward binary128 0xb.33334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598b8p+0 : inexact-ok
+= hypot downward ibm128 0xb.33334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot upward ibm128 0xb.33334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d59cp+0 : inexact-ok
+= hypot downward binary32 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot tonearest binary32 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot towardzero binary32 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot upward binary32 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot downward binary64 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot tonearest binary64 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot towardzero binary64 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot upward binary64 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a4550ap+0 : inexact-ok
+= hypot downward intel96 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot tonearest intel96 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot towardzero intel96 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot upward intel96 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aedp+0 : inexact-ok
+= hypot downward m68k96 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot upward m68k96 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aedp+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40beb8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40becp+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40beb8p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40becp+0 : inexact-ok
+= hypot downward ibm128 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40bcp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40bcp+0 : inexact-ok
+= hypot upward ibm128 0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40cp+0 : inexact-ok
+= hypot downward binary32 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot tonearest binary32 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot towardzero binary32 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot upward binary32 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b745p+0 : inexact-ok
+= hypot downward binary64 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot tonearest binary64 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot towardzero binary64 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot upward binary64 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot downward intel96 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot tonearest intel96 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot towardzero intel96 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot upward intel96 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot downward m68k96 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot upward m68k96 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d8108p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d84p+0 : inexact-ok
+= hypot downward binary64 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot tonearest binary64 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot towardzero binary64 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot upward binary64 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot downward intel96 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot tonearest intel96 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot towardzero intel96 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot upward intel96 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652fp+0 : inexact-ok
+= hypot downward m68k96 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot upward m68k96 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652fp+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aaa78p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aa8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aacp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aa8p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aacp+0 : inexact-ok
+= hypot downward binary64 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot tonearest binary64 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot towardzero binary64 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot upward binary64 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot downward intel96 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot tonearest intel96 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot towardzero intel96 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot upward intel96 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2cp+0 : inexact-ok
+= hypot downward m68k96 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot upward m68k96 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2cp+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a428p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a8p+0 : inexact-ok
+= hypot downward intel96 0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot tonearest intel96 0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot towardzero intel96 0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot upward intel96 0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot downward m68k96 0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot upward m68k96 0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbb2p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbb28p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbb2p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbb28p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffb8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbcp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffb8p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbcp+0 : inexact-ok
+= hypot downward intel96 0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot tonearest intel96 0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot towardzero intel96 0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot upward intel96 0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot downward m68k96 0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot upward m68k96 0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04cp+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04c8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04cp+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04c8p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d08p+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0820b6b9245853390b7228p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0820b6b9245853390b7228p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b7238p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b7238p+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6fc8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6fdp+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6fc8p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6fdp+0 : inexact-ok
+= hypot downward ibm128 0xb.33333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6cp+0 : inexact-ok
+= hypot upward ibm128 0xb.33333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot downward binary128 0xb.33333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot upward binary128 0xb.33333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b73dp+0 : inexact-ok
+= hypot downward ibm128 0xb.33333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b74p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b74p+0 : inexact-ok
+= hypot downward binary64 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest binary64 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero binary64 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward binary64 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward intel96 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot tonearest intel96 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot towardzero intel96 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot upward intel96 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c48p+0 : inexact-ok
+= hypot downward m68k96 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot upward m68k96 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c48p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d94958p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d94cp+0 : inexact-ok
+= hypot downward binary64 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest binary64 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero binary64 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward binary64 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward intel96 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot tonearest intel96 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot towardzero intel96 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot upward intel96 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fcp+0 : inexact-ok
+= hypot downward m68k96 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot towardzero m68k96 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot upward m68k96 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fcp+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdf98p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcep+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcep+0 : inexact-ok
+= hypot downward binary64 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest binary64 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero binary64 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward binary64 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward intel96 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot tonearest intel96 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot towardzero intel96 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot upward intel96 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot downward m68k96 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot upward m68k96 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0f48p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a1p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0cp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a1p+0 : inexact-ok
+= hypot downward binary64 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest binary64 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero binary64 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward binary64 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward intel96 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot tonearest intel96 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot towardzero intel96 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot upward intel96 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6fp+0 : inexact-ok
+= hypot downward m68k96 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot tonearest m68k96 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot towardzero m68k96 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot upward m68k96 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6fp+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057d8p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d058p+0 : inexact-ok
+= hypot downward intel96 0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot tonearest intel96 0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot towardzero intel96 0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot upward intel96 0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot downward m68k96 0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot upward m68k96 0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5fap+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5fa8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5fap+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5fa8p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f6p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5cp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f6p+0 : inexact-ok
+= hypot downward intel96 0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot tonearest intel96 0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot towardzero intel96 0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot upward intel96 0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd7p+0 : inexact-ok
+= hypot downward m68k96 0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot upward m68k96 0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd7p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f31p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f318p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f31p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f318p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8fp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f4p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8fp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f4p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199aa8p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a753419984p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199c4p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a753419ap+0 : inexact-ok
+= hypot downward binary64 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest binary64 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero binary64 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward binary64 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c41p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c41p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d62ap+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d62cp+0 : inexact-ok
+= hypot downward binary64 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest binary64 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero binary64 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward binary64 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f5p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f5p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f410be92151798p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f410be921517cp+0 : inexact-ok
+= hypot downward binary64 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest binary64 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero binary64 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward binary64 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566bp+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566bp+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca07p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca04p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca08p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca04p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca08p+0 : inexact-ok
+= hypot downward binary64 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest binary64 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero binary64 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward binary64 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e68p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e68p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f65753p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f657538p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f65753p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f657538p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f6578p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f576p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f5768p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f576p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f5768p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f54p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f58p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f54p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f58p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08ead8p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08e8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08ecp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08e8p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08ecp+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cce42c9a0679925p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cce42c9a0679925p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a0679926p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a0679926p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798cp+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067993fp+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067993f8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067993fp+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067993f8p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067994p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067994p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361eap+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361ea08p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361eap+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361ea08p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361e8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361ecp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361e8p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361ecp+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b49ep+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b4cp+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9a5p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e98p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e98p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9cp+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a088p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a0888p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a088p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a0888p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a0cp+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33eab8p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33e8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33ecp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33e8p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33ecp+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7e28p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd126416483e25ap+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd126416483e25ap+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e25bp+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e25bp+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e234p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e2348p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e234p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e2348p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e2p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e2p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e274p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e2748p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e274p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e2748p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e28p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e28p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c9a8p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4ccp+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b868p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b87p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b868p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b87p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410bcp+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e65p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e4p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e8p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e4p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e8p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c45488p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c458p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce36b8p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce34p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce38p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce34p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce38p+0 : inexact-ok
+= hypot downward intel96 0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest intel96 0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero intel96 0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward intel96 0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward m68k96 0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest m68k96 0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero m68k96 0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward m68k96 0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ca18p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ca2p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ca18p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ca2p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067c8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ccp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067c8p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ccp+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd1255a88cd871ap+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd1255a88cd871ap+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd871bp+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd871bp+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86f4p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86f48p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86f4p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86f48p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86cp+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd87348p+0 : inexact-ok
+= hypot downward ibm128 0xb.333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd874p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot upward ibm128 0xb.333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd874p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward binary128 0xb.333333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 0xb.333333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 0xb.333333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 0xb.333333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward ibm128 0xb.33333333333333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333333333333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333333333333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot upward ibm128 0xb.33333333333333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970aap+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333333333333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333333333333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333333333333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333333333333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d8p+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333333333333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333333333333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333333333333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot upward ibm128 0xb.33333333333333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d4p+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333333333333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333333333333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333333333333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333333333333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333333333333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333333333333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333333333333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot upward ibm128 0xb.33333333333333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee29p+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333333333333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333333333333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333333333333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333333333333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c24p+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8e8p+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot downward binary128 0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward ibm128 0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot upward ibm128 0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cep+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cep+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970aap+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d8p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d4p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee29p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c24p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc67p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc67p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot downward binary128 0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward ibm128 0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot tonearest ibm128 0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot towardzero ibm128 0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot upward ibm128 0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+hypot -0.7 -12.4
+= hypot downward binary32 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot tonearest binary32 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot towardzero binary32 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot upward binary32 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot downward binary64 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot upward binary64 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a4550ap+0 : inexact-ok
+= hypot downward intel96 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot upward intel96 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aedp+0 : inexact-ok
+= hypot downward m68k96 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot upward m68k96 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aedp+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40beb8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40becp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40beb8p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40becp+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40bcp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40bcp+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333p-4 -0xc.66666p+0 : 0xc.6b7435a45509aec49781cf40cp+0 : inexact-ok
+= hypot downward binary32 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot tonearest binary32 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot towardzero binary32 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot upward binary32 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b745p+0 : inexact-ok
+= hypot downward binary64 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot tonearest binary64 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot upward binary64 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot downward intel96 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot upward intel96 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot downward m68k96 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot upward m68k96 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d8108p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333p-4 -0xc.66667p+0 : 0xc.6b74459dd23a4dbb5549637d84p+0 : inexact-ok
+= hypot downward binary64 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot upward binary64 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot downward intel96 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot upward intel96 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652fp+0 : inexact-ok
+= hypot downward m68k96 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot upward m68k96 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652fp+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aaa78p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aa8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aacp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aa8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333p-4 -0xc.666666666666p+0 : 0xc.6b743c0820b652e79d827d9aacp+0 : inexact-ok
+= hypot downward binary64 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot upward binary64 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot downward intel96 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot upward intel96 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2cp+0 : inexact-ok
+= hypot downward m68k96 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot upward m68k96 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2cp+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a428p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0820b6d2b3870767e7a8p+0 : inexact-ok
+= hypot downward intel96 -0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot upward intel96 -0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot downward m68k96 -0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot upward m68k96 -0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbb2p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbb28p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbb2p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbb28p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffb8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbcp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffb8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0820b6b91df4878bffbcp+0 : inexact-ok
+= hypot downward intel96 -0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot upward intel96 -0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot downward m68k96 -0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot upward m68k96 -0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04cp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04c8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04cp+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04c8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0820b6b92dee04bc9d08p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0820b6b9245853390b7228p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0820b6b9245853390b7228p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b7238p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b7238p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6fc8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6fdp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6fc8p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6fdp+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b6cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b73dp+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b74p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0820b6b9245853390b74p+0 : inexact-ok
+= hypot downward binary32 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot tonearest binary32 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot towardzero binary32 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b743p+0 : inexact-ok
+= hypot upward binary32 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot downward binary64 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot upward binary64 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c58p+0 : inexact-ok
+= hypot downward intel96 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot upward intel96 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot downward m68k96 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot upward m68k96 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b91ap+0 : inexact-ok
+= hypot downward ibm128 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33334p-4 -0xc.66666p+0 : 0xc.6b7435b2c2c5220efb3fac2b94p+0 : inexact-ok
+= hypot downward binary32 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot tonearest binary32 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot towardzero binary32 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b744p+0 : inexact-ok
+= hypot upward binary32 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b745p+0 : inexact-ok
+= hypot downward binary64 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot upward binary64 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff6p+0 : inexact-ok
+= hypot downward intel96 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot upward intel96 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae8p+0 : inexact-ok
+= hypot downward m68k96 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot upward m68k96 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae8p+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba965p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba94p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba98p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba94p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33334p-4 -0xc.66667p+0 : 0xc.6b7445ac3ff5ae76c1d736ba98p+0 : inexact-ok
+= hypot downward binary64 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot upward binary64 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot downward intel96 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot upward intel96 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bedp+0 : inexact-ok
+= hypot downward m68k96 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot upward m68k96 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bedp+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afd8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot upward ibm128 -0xb.33334p-4 -0xc.666666666666p+0 : 0xc.6b743c168e71bec59e5b152bp+0 : inexact-ok
+= hypot downward binary64 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot upward binary64 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e728p+0 : inexact-ok
+= hypot downward intel96 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot upward intel96 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723eap+0 : inexact-ok
+= hypot downward m68k96 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot upward m68k96 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723eap+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003d88p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.33334p-4 -0xc.6666666666668p+0 : 0xc.6b743c168e723e9187df6b004p+0 : inexact-ok
+= hypot downward intel96 -0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot upward intel96 -0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot downward m68k96 -0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot upward m68k96 -0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14c68p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14c7p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14c68p+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14c7p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.33334p-4 -0xc.666666666666666p+0 : 0xc.6b743c168e7224fbf55facd15p+0 : inexact-ok
+= hypot downward intel96 -0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot upward intel96 -0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot downward m68k96 -0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot upward m68k96 -0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c071p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c0718p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c071p+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c0718p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c04p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c08p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c04p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33334p-4 -0xc.666666666666667p+0 : 0xc.6b743c168e72250beedcdd5c08p+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d5972p+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594b8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot downward binary128 -0xb.33334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot upward binary128 -0xb.33334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598b8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c168e722502592b59d59cp+0 : inexact-ok
+= hypot downward binary64 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward binary64 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c41p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c41p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d62ap+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c4007f8f39d62cp+0 : inexact-ok
+= hypot downward binary64 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward binary64 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f5p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f5p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f410be92151798p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f410be921517cp+0 : inexact-ok
+= hypot downward binary64 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward binary64 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566bp+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566bp+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca07p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca04p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca08p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca04p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566a771c962ca08p+0 : inexact-ok
+= hypot downward binary64 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward binary64 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e68p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e68p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f65753p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f657538p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f65753p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f657538p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6735b4e2f6578p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f576p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f5768p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f576p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f5768p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f54p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f58p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f54p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375ccddc8ce596f58p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08ead8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08e8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08ecp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08e8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375ccedc24b8a08ecp+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cce42c9a0679925p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cce42c9a0679925p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a0679926p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a0679926p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06798cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067993fp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067993f8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067993fp+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067993f8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067994p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cce42c9a067994p+0 : inexact-ok
+= hypot downward binary64 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward binary64 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward intel96 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot upward intel96 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c48p+0 : inexact-ok
+= hypot downward m68k96 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot upward m68k96 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c48p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d94958p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c473ed6aa2d94cp+0 : inexact-ok
+= hypot downward binary64 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward binary64 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward intel96 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot towardzero intel96 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot upward intel96 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fcp+0 : inexact-ok
+= hypot downward m68k96 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot upward m68k96 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fcp+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdf98p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcep+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95fb479c3f5dcep+0 : inexact-ok
+= hypot downward binary64 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward binary64 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward intel96 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot upward intel96 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot downward m68k96 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot upward m68k96 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0f48p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a1p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a0cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b0375671adfa4906a1p+0 : inexact-ok
+= hypot downward binary64 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest binary64 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero binary64 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward binary64 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward intel96 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot tonearest intel96 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot towardzero intel96 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot upward intel96 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6fp+0 : inexact-ok
+= hypot downward m68k96 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot upward m68k96 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6fp+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057d8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6e6c9295d058p+0 : inexact-ok
+= hypot downward intel96 -0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot upward intel96 -0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot downward m68k96 -0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot upward m68k96 -0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5fap+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5fa8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5fap+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5fa8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f6p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f5cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd5136a9870f6p+0 : inexact-ok
+= hypot downward intel96 -0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot upward intel96 -0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd7p+0 : inexact-ok
+= hypot downward m68k96 -0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot upward m68k96 -0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd7p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f31p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f318p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f31p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f318p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8fp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f4p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8fp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd613026b7a8f4p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199aa8p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a753419984p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199c4p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd579a753419ap+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c9a8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42ea89dd7f4ccp+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b868p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b87p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b868p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b87p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f34f78410bcp+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e65p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e4p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59ad7e928e8p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c45488p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1845cb5c458p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce36b8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce34p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce38p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce34p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf1dcdfce38p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ca18p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ca2p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ca18p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ca2p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067c8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ccp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067c8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1beb5a1067ccp+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd1255a88cd871ap+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd1255a88cd871ap+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd871bp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd871bp+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86f4p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86f48p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86f4p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86f48p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd86cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd87348p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd874p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd1255a88cd874p+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361eap+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361ea08p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361eap+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361ea08p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361e8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361ecp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361e8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eb70b9361ecp+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b49ep+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f43653f6b4cp+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9a5p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e98p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e98p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d5a945a48e9cp+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a088p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a0888p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a088p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a0888p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a192ca712a0cp+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33eab8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33e8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33ecp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33e8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0c004a9b33ecp+0 : inexact-ok
+= hypot downward intel96 -0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest intel96 -0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero intel96 -0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward intel96 -0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward m68k96 -0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest m68k96 -0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero m68k96 -0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward m68k96 -0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7e28p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd126416483e25ap+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd126416483e25ap+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e25bp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e25bp+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e234p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e2348p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e234p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e2348p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e2p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e2p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e274p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e2748p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e274p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e2748p+0 : inexact-ok
+= hypot downward ibm128 -0xb.333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e28p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot upward ibm128 -0xb.333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd126416483e28p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward binary128 -0xb.333333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.333333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.333333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 -0xb.333333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333338p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cep+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cep+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333333333333333333p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970aap+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333333333333333333p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d8p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333333333333333333p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d4p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333333333333333333p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333333333333333333p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee29p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333333333333333333p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c24p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc67p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc67p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot downward binary128 -0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 -0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward ibm128 -0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.3333333333333333333333333p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333333333333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333333333333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333333333333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333333333333333333333334p-4 -0xc.66666p+0 : 0xc.6b7435a737c8c42eab80970aap+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333333333333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333333333333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333333333333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333333333333333333333334p-4 -0xc.66667p+0 : 0xc.6b7445a0b4f95f6f37da4322d8p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333333333333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333333333333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333333333333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333333333333333333333334p-4 -0xc.666666666666p+0 : 0xc.6b743c0b037566d59dbaa83d4p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333333333333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333333333333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333333333333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333333333333333333333334p-4 -0xc.6666666666668p+0 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333333333333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333333333333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333333333333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333333333333333333333334p-4 -0xc.666666666666666p+0 : 0xc.6b743c0b0375cd0bf4bf9ee29p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333333333333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333333333333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333333333333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333333333333333333333334p-4 -0xc.666666666666667p+0 : 0xc.6b743c0b0375cd1bee3ccf7c24p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 -0xc.666666666666666666666666666p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 -0xc.6666666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8e8p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666664p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot downward binary128 -0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 -0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 -0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 -0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward ibm128 -0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot towardzero ibm128 -0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot upward ibm128 -0xb.33333333333333333333333334p-4 -0xc.66666666666666666666666668p+0 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+hypot 12.4 0.7
+= hypot downward binary32 0xc.66667p+0 0xb.33334p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot tonearest binary32 0xc.66667p+0 0xb.33334p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot towardzero binary32 0xc.66667p+0 0xb.33334p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot upward binary32 0xc.66667p+0 0xb.33334p-4 : 0xc.6b745p+0 : inexact-ok
+= hypot downward binary64 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot tonearest binary64 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot towardzero binary64 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot upward binary64 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff6p+0 : inexact-ok
+= hypot downward intel96 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot upward intel96 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae8p+0 : inexact-ok
+= hypot downward m68k96 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot upward m68k96 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae8p+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba965p+0 : inexact-ok
+= hypot downward ibm128 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba94p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba98p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba94p+0 : inexact-ok
+= hypot upward ibm128 0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba98p+0 : inexact-ok
+= hypot downward binary32 0xc.66667p+0 0xb.33333p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot tonearest binary32 0xc.66667p+0 0xb.33333p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot towardzero binary32 0xc.66667p+0 0xb.33333p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot upward binary32 0xc.66667p+0 0xb.33333p-4 : 0xc.6b745p+0 : inexact-ok
+= hypot downward binary64 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot tonearest binary64 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot towardzero binary64 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot upward binary64 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot downward intel96 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot tonearest intel96 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot towardzero intel96 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot upward intel96 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot downward m68k96 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot upward m68k96 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d8108p+0 : inexact-ok
+= hypot downward ibm128 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot upward ibm128 0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d84p+0 : inexact-ok
+= hypot downward binary64 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest binary64 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero binary64 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward binary64 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward intel96 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot tonearest intel96 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot towardzero intel96 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot upward intel96 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fcp+0 : inexact-ok
+= hypot downward m68k96 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot upward m68k96 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fcp+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdf98p+0 : inexact-ok
+= hypot downward ibm128 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcep+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0 : inexact-ok
+= hypot upward ibm128 0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcep+0 : inexact-ok
+= hypot downward binary64 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest binary64 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero binary64 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward binary64 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward intel96 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot upward intel96 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f5p+0 : inexact-ok
+= hypot downward m68k96 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot upward m68k96 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f5p+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be92151798p+0 : inexact-ok
+= hypot downward ibm128 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot upward ibm128 0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be921517cp+0 : inexact-ok
+= hypot downward intel96 0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward intel96 0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward m68k96 0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward m68k96 0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b49ep+0 : inexact-ok
+= hypot downward ibm128 0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot upward ibm128 0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b4cp+0 : inexact-ok
+= hypot downward intel96 0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward intel96 0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward m68k96 0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward m68k96 0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b868p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b87p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b868p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b87p+0 : inexact-ok
+= hypot downward ibm128 0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot upward ibm128 0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410bcp+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 0xb.333333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 0xb.333333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 0xb.333333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 0xb.333333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward ibm128 0xc.66667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot upward ibm128 0xc.66667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d8p+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward ibm128 0xc.66667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot upward ibm128 0xc.66667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d8p+0 : inexact-ok
+= hypot downward binary32 0xc.66666p+0 0xb.33334p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot tonearest binary32 0xc.66666p+0 0xb.33334p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot towardzero binary32 0xc.66666p+0 0xb.33334p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot upward binary32 0xc.66666p+0 0xb.33334p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot downward binary64 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot tonearest binary64 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot towardzero binary64 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot upward binary64 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c58p+0 : inexact-ok
+= hypot downward intel96 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot upward intel96 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot downward m68k96 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot upward m68k96 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b91ap+0 : inexact-ok
+= hypot downward ibm128 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b94p+0 : inexact-ok
+= hypot downward binary32 0xc.66666p+0 0xb.33333p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot tonearest binary32 0xc.66666p+0 0xb.33333p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot towardzero binary32 0xc.66666p+0 0xb.33333p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot upward binary32 0xc.66666p+0 0xb.33333p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot downward binary64 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot tonearest binary64 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot towardzero binary64 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot upward binary64 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a4550ap+0 : inexact-ok
+= hypot downward intel96 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot tonearest intel96 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot towardzero intel96 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot upward intel96 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aedp+0 : inexact-ok
+= hypot downward m68k96 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot upward m68k96 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aedp+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40beb8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40becp+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40beb8p+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40becp+0 : inexact-ok
+= hypot downward ibm128 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40bcp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40bcp+0 : inexact-ok
+= hypot upward ibm128 0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40cp+0 : inexact-ok
+= hypot downward binary64 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest binary64 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero binary64 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward binary64 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward intel96 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot upward intel96 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c48p+0 : inexact-ok
+= hypot downward m68k96 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot upward m68k96 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c48p+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d94958p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d94cp+0 : inexact-ok
+= hypot downward binary64 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest binary64 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero binary64 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward binary64 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward intel96 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot upward intel96 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c41p+0 : inexact-ok
+= hypot downward m68k96 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot upward m68k96 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c41p+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d62ap+0 : inexact-ok
+= hypot downward ibm128 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d62cp+0 : inexact-ok
+= hypot downward intel96 0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward intel96 0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward m68k96 0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward m68k96 0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361eap+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361ea08p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361eap+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361ea08p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361e8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361ecp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361e8p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361ecp+0 : inexact-ok
+= hypot downward intel96 0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward intel96 0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward m68k96 0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward m68k96 0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c9a8p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4ccp+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward ibm128 0xc.66666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot upward ibm128 0xc.66666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970aap+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cep+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cep+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot upward ibm128 0xc.66666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970aap+0 : inexact-ok
+= hypot downward binary64 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot tonearest binary64 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot towardzero binary64 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot upward binary64 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e728p+0 : inexact-ok
+= hypot downward intel96 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot tonearest intel96 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot towardzero intel96 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot upward intel96 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723eap+0 : inexact-ok
+= hypot downward m68k96 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot upward m68k96 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723eap+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003d88p+0 : inexact-ok
+= hypot downward ibm128 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot upward ibm128 0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9187df6b004p+0 : inexact-ok
+= hypot downward binary64 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot tonearest binary64 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot towardzero binary64 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot upward binary64 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot downward intel96 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot tonearest intel96 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot towardzero intel96 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot upward intel96 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2cp+0 : inexact-ok
+= hypot downward m68k96 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot towardzero m68k96 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot upward m68k96 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2cp+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a428p+0 : inexact-ok
+= hypot downward ibm128 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot upward ibm128 0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a8p+0 : inexact-ok
+= hypot downward binary64 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest binary64 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero binary64 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward binary64 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward intel96 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot tonearest intel96 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot towardzero intel96 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot upward intel96 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6fp+0 : inexact-ok
+= hypot downward m68k96 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot tonearest m68k96 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot towardzero m68k96 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot upward m68k96 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6fp+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057d8p+0 : inexact-ok
+= hypot downward ibm128 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot upward ibm128 0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d058p+0 : inexact-ok
+= hypot downward binary64 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest binary64 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero binary64 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward binary64 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward intel96 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot tonearest intel96 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot towardzero intel96 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot upward intel96 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e68p+0 : inexact-ok
+= hypot downward m68k96 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot upward m68k96 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e68p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f65753p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f657538p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f65753p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f657538p+0 : inexact-ok
+= hypot downward ibm128 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot upward ibm128 0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f6578p+0 : inexact-ok
+= hypot downward intel96 0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest intel96 0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero intel96 0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward intel96 0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward m68k96 0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest m68k96 0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero m68k96 0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward m68k96 0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a088p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a0888p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a088p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a0888p+0 : inexact-ok
+= hypot downward ibm128 0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot upward ibm128 0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a0cp+0 : inexact-ok
+= hypot downward intel96 0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest intel96 0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero intel96 0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward intel96 0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward m68k96 0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest m68k96 0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero m68k96 0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward m68k96 0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c45488p+0 : inexact-ok
+= hypot downward ibm128 0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot upward ibm128 0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c458p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward ibm128 0xc.6666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.6666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.6666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot upward ibm128 0xc.6666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward ibm128 0xc.6666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.6666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.6666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot upward ibm128 0xc.6666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot downward binary64 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot tonearest binary64 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot towardzero binary64 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot upward binary64 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bedp+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bedp+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afd8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152bp+0 : inexact-ok
+= hypot downward binary64 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot tonearest binary64 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot towardzero binary64 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot upward binary64 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652fp+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652fp+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aaa78p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aa8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aacp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aa8p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aacp+0 : inexact-ok
+= hypot downward binary64 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest binary64 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero binary64 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward binary64 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0f48p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a1p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0cp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a1p+0 : inexact-ok
+= hypot downward binary64 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest binary64 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero binary64 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward binary64 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566bp+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566bp+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca07p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca04p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca08p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca04p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca08p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9a5p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e98p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e98p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9cp+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e65p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e4p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e8p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e4p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d4p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d4p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c071p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c0718p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c071p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c0718p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c04p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c08p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c04p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c08p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04cp+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04c8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04cp+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04c8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d08p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd7p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd7p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f31p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f318p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f31p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f318p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8fp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f4p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8fp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f4p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08ead8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08e8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08ecp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08e8p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08ecp+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7e28p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ca18p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ca2p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ca18p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ca2p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067c8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ccp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067c8p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ccp+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c24p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c24p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14c68p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14c7p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14c68p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14c7p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd15p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbb2p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbb28p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbb2p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbb28p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffb8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbcp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffb8p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbcp+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5fap+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5fa8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5fap+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5fa8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f6p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5cp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f6p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f576p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f5768p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f576p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f5768p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f54p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f58p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f54p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f58p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33eab8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33e8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33ecp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33e8p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33ecp+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce36b8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce34p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce38p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce34p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce38p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee29p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee29p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d5972p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7238p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7238p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aa8p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a0679926p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a0679926p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25bp+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25bp+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871bp+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871bp+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8e8p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7228p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7228p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a0679925p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a0679925p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25ap+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25ap+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871ap+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871ap+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d598b8p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d59cp+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b73dp+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b74p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b74p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199c4p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a753419ap+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067993fp+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067993f8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067993fp+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067993f8p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067994p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067994p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e274p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2748p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e274p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2748p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e28p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e28p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87348p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd874p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd874p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d594b8p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666664p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666664p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666664p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666664p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6fc8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6fdp+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6fc8p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6fdp+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666664p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666664p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666664p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6cp+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666664p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a753419984p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666664p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666664p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666664p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666664p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666664p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666664p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666664p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798cp+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666664p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e234p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2348p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e234p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2348p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666664p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666664p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666664p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666664p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86f4p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86f48p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86f4p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86f48p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666664p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666664p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666664p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86cp+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666664p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666664p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666664p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666664p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666664p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc67p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc67p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+hypot -12.4 0.7
+= hypot downward binary32 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot tonearest binary32 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot towardzero binary32 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot upward binary32 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot downward binary64 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot upward binary64 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c58p+0 : inexact-ok
+= hypot downward intel96 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot upward intel96 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b91ap+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666p+0 0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b94p+0 : inexact-ok
+= hypot downward binary32 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot tonearest binary32 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot towardzero binary32 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot upward binary32 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot downward binary64 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot upward binary64 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a4550ap+0 : inexact-ok
+= hypot downward intel96 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot upward intel96 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aedp+0 : inexact-ok
+= hypot downward m68k96 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot upward m68k96 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aedp+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40beb8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40becp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40beb8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40becp+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40bcp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40bcp+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666p+0 0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40cp+0 : inexact-ok
+= hypot downward binary64 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward binary64 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward intel96 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot upward intel96 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c48p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c48p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d94958p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666p+0 0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d94cp+0 : inexact-ok
+= hypot downward binary64 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward binary64 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward intel96 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot upward intel96 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c41p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c41p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d62ap+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666p+0 0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d62cp+0 : inexact-ok
+= hypot downward intel96 -0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward intel96 -0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361eap+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361ea08p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361eap+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361ea08p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361e8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361ecp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361e8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666p+0 0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361ecp+0 : inexact-ok
+= hypot downward intel96 -0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward intel96 -0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c9a8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666p+0 0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4ccp+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970aap+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cep+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cep+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970aap+0 : inexact-ok
+= hypot downward binary32 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot tonearest binary32 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot towardzero binary32 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot upward binary32 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b745p+0 : inexact-ok
+= hypot downward binary64 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot upward binary64 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff6p+0 : inexact-ok
+= hypot downward intel96 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot upward intel96 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae8p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae8p+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba965p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba94p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba98p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba94p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66667p+0 0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba98p+0 : inexact-ok
+= hypot downward binary32 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot tonearest binary32 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot towardzero binary32 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot upward binary32 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b745p+0 : inexact-ok
+= hypot downward binary64 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot tonearest binary64 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot upward binary64 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot downward intel96 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot upward intel96 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot downward m68k96 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot upward m68k96 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d8108p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66667p+0 0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d84p+0 : inexact-ok
+= hypot downward binary64 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward binary64 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward intel96 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot upward intel96 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fcp+0 : inexact-ok
+= hypot downward m68k96 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot upward m68k96 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fcp+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdf98p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcep+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0 : inexact-ok
+= hypot upward ibm128 -0xc.66667p+0 0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcep+0 : inexact-ok
+= hypot downward binary64 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward binary64 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward intel96 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot upward intel96 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f5p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f5p+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be92151798p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66667p+0 0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be921517cp+0 : inexact-ok
+= hypot downward intel96 -0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward intel96 -0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b49ep+0 : inexact-ok
+= hypot downward ibm128 -0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66667p+0 0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b4cp+0 : inexact-ok
+= hypot downward intel96 -0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward intel96 -0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b868p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b87p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b868p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b87p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66667p+0 0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410bcp+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 0xb.333333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 0xb.333333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 0xb.333333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 0xb.333333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d8p+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d8p+0 : inexact-ok
+= hypot downward binary64 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot upward binary64 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bedp+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bedp+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afd8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152bp+0 : inexact-ok
+= hypot downward binary64 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot upward binary64 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652fp+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652fp+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aaa78p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aa8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aacp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aa8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aacp+0 : inexact-ok
+= hypot downward binary64 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward binary64 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0f48p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a1p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a1p+0 : inexact-ok
+= hypot downward binary64 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward binary64 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566bp+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566bp+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca07p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca04p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca08p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca04p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca08p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9a5p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e98p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e98p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9cp+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e65p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e4p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d4p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d4p+0 : inexact-ok
+= hypot downward binary64 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot upward binary64 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e728p+0 : inexact-ok
+= hypot downward intel96 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot upward intel96 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723eap+0 : inexact-ok
+= hypot downward m68k96 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot upward m68k96 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723eap+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003d88p+0 : inexact-ok
+= hypot downward ibm128 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.6666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e723e9187df6b004p+0 : inexact-ok
+= hypot downward binary64 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot upward binary64 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot downward intel96 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot towardzero intel96 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot upward intel96 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2cp+0 : inexact-ok
+= hypot downward m68k96 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot upward m68k96 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2cp+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a428p+0 : inexact-ok
+= hypot downward ibm128 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot upward ibm128 -0xc.6666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a8p+0 : inexact-ok
+= hypot downward binary64 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward binary64 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward intel96 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot tonearest intel96 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot towardzero intel96 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot upward intel96 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6fp+0 : inexact-ok
+= hypot downward m68k96 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot upward m68k96 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6fp+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057d8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.6666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d058p+0 : inexact-ok
+= hypot downward binary64 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward binary64 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward intel96 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot upward intel96 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e68p+0 : inexact-ok
+= hypot downward m68k96 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot upward m68k96 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e68p+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f65753p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f657538p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f65753p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f657538p+0 : inexact-ok
+= hypot downward ibm128 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot upward ibm128 -0xc.6666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f6578p+0 : inexact-ok
+= hypot downward intel96 -0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest intel96 -0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero intel96 -0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward intel96 -0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward m68k96 -0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward m68k96 -0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a088p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a0888p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a088p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a0888p+0 : inexact-ok
+= hypot downward ibm128 -0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot upward ibm128 -0xc.6666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a0cp+0 : inexact-ok
+= hypot downward intel96 -0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest intel96 -0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero intel96 -0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward intel96 -0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward m68k96 -0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward m68k96 -0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c45488p+0 : inexact-ok
+= hypot downward ibm128 -0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot upward ibm128 -0xc.6666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c458p+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.6666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.6666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.6666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.6666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.6666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.6666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.6666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.6666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14c68p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14c7p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14c68p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14c7p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd15p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbb2p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbb28p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbb2p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbb28p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffb8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbcp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffb8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbcp+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5fap+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5fa8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5fap+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5fa8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f6p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f6p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f576p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f5768p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f576p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f5768p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f54p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f58p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f54p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f58p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33eab8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33e8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33ecp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33e8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33ecp+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce36b8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce34p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce38p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce34p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce38p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee29p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee29p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c071p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c0718p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c071p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c0718p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c04p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c08p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c04p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666667p+0 0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c08p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04cp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04c8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04cp+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04c8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666667p+0 0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d08p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd7p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd7p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f31p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f318p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f31p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f318p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8fp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f4p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8fp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666667p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f4p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08ead8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08e8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08ecp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08e8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666667p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08ecp+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7e28p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666667p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ca18p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ca2p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ca18p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ca2p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067c8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ccp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067c8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666667p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ccp+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666667p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c24p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666667p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c24p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7228p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7228p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a0679925p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a0679925p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25ap+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25ap+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871ap+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871ap+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d5972p+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7238p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7238p+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aa8p+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a0679926p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a0679926p+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25bp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25bp+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871bp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871bp+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8e8p+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d594b8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666664p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666664p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666664p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666664p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6fc8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6fdp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6fc8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6fdp+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666664p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666664p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666664p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666664p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a753419984p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666664p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666664p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666664p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666664p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666664p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666664p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666664p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666664p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e234p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2348p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e234p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2348p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666664p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666664p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666664p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666664p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86f4p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86f48p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86f4p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86f48p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666664p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666664p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666664p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666664p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666664p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666664p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666664p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666664p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc67p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc67p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666664p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d598b8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666668p+0 0xb.33334p-4 : 0xc.6b743c168e722502592b59d59cp+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b73dp+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b74p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666668p+0 0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b74p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199c4p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666668p+0 0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a753419ap+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067993fp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067993f8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067993fp+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067993f8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067994p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666668p+0 0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067994p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e274p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2748p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e274p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2748p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e28p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666668p+0 0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e28p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87348p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd874p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666668p+0 0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd874p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666668p+0 0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666668p+0 0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+hypot 12.4 -0.7
+= hypot downward binary32 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot tonearest binary32 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot towardzero binary32 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot upward binary32 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b745p+0 : inexact-ok
+= hypot downward binary64 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot tonearest binary64 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot towardzero binary64 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot upward binary64 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot downward intel96 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot tonearest intel96 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot towardzero intel96 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot upward intel96 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot downward m68k96 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot upward m68k96 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d8108p+0 : inexact-ok
+= hypot downward ibm128 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot upward ibm128 0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d84p+0 : inexact-ok
+= hypot downward binary32 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot tonearest binary32 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot towardzero binary32 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot upward binary32 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b745p+0 : inexact-ok
+= hypot downward binary64 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot tonearest binary64 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot towardzero binary64 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot upward binary64 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff6p+0 : inexact-ok
+= hypot downward intel96 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot upward intel96 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae8p+0 : inexact-ok
+= hypot downward m68k96 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot upward m68k96 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae8p+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba965p+0 : inexact-ok
+= hypot downward ibm128 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba94p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba98p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba94p+0 : inexact-ok
+= hypot upward ibm128 0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba98p+0 : inexact-ok
+= hypot downward binary64 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest binary64 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero binary64 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward binary64 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward intel96 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot upward intel96 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f5p+0 : inexact-ok
+= hypot downward m68k96 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot upward m68k96 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f5p+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be92151798p+0 : inexact-ok
+= hypot downward ibm128 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot upward ibm128 0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be921517cp+0 : inexact-ok
+= hypot downward binary64 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest binary64 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero binary64 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward binary64 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward intel96 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot tonearest intel96 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot towardzero intel96 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot upward intel96 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fcp+0 : inexact-ok
+= hypot downward m68k96 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot upward m68k96 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fcp+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdf98p+0 : inexact-ok
+= hypot downward ibm128 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcep+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0 : inexact-ok
+= hypot upward ibm128 0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcep+0 : inexact-ok
+= hypot downward intel96 0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward intel96 0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward m68k96 0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward m68k96 0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b868p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b87p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b868p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b87p+0 : inexact-ok
+= hypot downward ibm128 0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot upward ibm128 0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410bcp+0 : inexact-ok
+= hypot downward intel96 0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward intel96 0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward m68k96 0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward m68k96 0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b49ep+0 : inexact-ok
+= hypot downward ibm128 0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot upward ibm128 0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b4cp+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward ibm128 0xc.66667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot upward ibm128 0xc.66667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d8p+0 : inexact-ok
+= hypot downward binary128 0xc.66667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 0xc.66667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward ibm128 0xc.66667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot upward ibm128 0xc.66667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d8p+0 : inexact-ok
+= hypot downward binary32 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot tonearest binary32 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot towardzero binary32 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot upward binary32 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot downward binary64 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot tonearest binary64 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot towardzero binary64 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot upward binary64 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a4550ap+0 : inexact-ok
+= hypot downward intel96 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot tonearest intel96 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot towardzero intel96 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot upward intel96 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aedp+0 : inexact-ok
+= hypot downward m68k96 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot upward m68k96 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aedp+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40beb8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40becp+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40beb8p+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40becp+0 : inexact-ok
+= hypot downward ibm128 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40bcp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40bcp+0 : inexact-ok
+= hypot upward ibm128 0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40cp+0 : inexact-ok
+= hypot downward binary32 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot tonearest binary32 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot towardzero binary32 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot upward binary32 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot downward binary64 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot tonearest binary64 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot towardzero binary64 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot upward binary64 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c58p+0 : inexact-ok
+= hypot downward intel96 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot upward intel96 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot downward m68k96 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot upward m68k96 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b91ap+0 : inexact-ok
+= hypot downward ibm128 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b94p+0 : inexact-ok
+= hypot downward binary64 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest binary64 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero binary64 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward binary64 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward intel96 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot upward intel96 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c41p+0 : inexact-ok
+= hypot downward m68k96 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot upward m68k96 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c41p+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d62ap+0 : inexact-ok
+= hypot downward ibm128 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d62cp+0 : inexact-ok
+= hypot downward binary64 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest binary64 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero binary64 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward binary64 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward intel96 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot upward intel96 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c48p+0 : inexact-ok
+= hypot downward m68k96 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot upward m68k96 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c48p+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d94958p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d94cp+0 : inexact-ok
+= hypot downward intel96 0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward intel96 0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward m68k96 0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward m68k96 0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c9a8p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4ccp+0 : inexact-ok
+= hypot downward intel96 0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest intel96 0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero intel96 0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward intel96 0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward m68k96 0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward m68k96 0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361eap+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361ea08p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361eap+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361ea08p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361e8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361ecp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361e8p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361ecp+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cep+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cep+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot upward ibm128 0xc.66666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970aap+0 : inexact-ok
+= hypot downward binary128 0xc.66666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 0xc.66666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward ibm128 0xc.66666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot upward ibm128 0xc.66666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970aap+0 : inexact-ok
+= hypot downward binary64 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot tonearest binary64 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot towardzero binary64 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot upward binary64 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot downward intel96 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot tonearest intel96 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot towardzero intel96 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot upward intel96 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2cp+0 : inexact-ok
+= hypot downward m68k96 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot towardzero m68k96 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot upward m68k96 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2cp+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a428p+0 : inexact-ok
+= hypot downward ibm128 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot upward ibm128 0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a8p+0 : inexact-ok
+= hypot downward binary64 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot tonearest binary64 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot towardzero binary64 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot upward binary64 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e728p+0 : inexact-ok
+= hypot downward intel96 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot tonearest intel96 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot towardzero intel96 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot upward intel96 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723eap+0 : inexact-ok
+= hypot downward m68k96 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot upward m68k96 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723eap+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003d88p+0 : inexact-ok
+= hypot downward ibm128 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot upward ibm128 0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9187df6b004p+0 : inexact-ok
+= hypot downward binary64 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest binary64 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero binary64 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward binary64 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward intel96 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot tonearest intel96 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot towardzero intel96 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot upward intel96 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e68p+0 : inexact-ok
+= hypot downward m68k96 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot upward m68k96 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e68p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f65753p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f657538p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f65753p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f657538p+0 : inexact-ok
+= hypot downward ibm128 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot upward ibm128 0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f6578p+0 : inexact-ok
+= hypot downward binary64 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest binary64 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero binary64 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward binary64 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward intel96 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot tonearest intel96 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot towardzero intel96 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot upward intel96 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6fp+0 : inexact-ok
+= hypot downward m68k96 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot tonearest m68k96 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot towardzero m68k96 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot upward m68k96 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6fp+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057d8p+0 : inexact-ok
+= hypot downward ibm128 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot upward ibm128 0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d058p+0 : inexact-ok
+= hypot downward intel96 0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest intel96 0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero intel96 0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward intel96 0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward m68k96 0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest m68k96 0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero m68k96 0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward m68k96 0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c45488p+0 : inexact-ok
+= hypot downward ibm128 0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot upward ibm128 0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c458p+0 : inexact-ok
+= hypot downward intel96 0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest intel96 0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero intel96 0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward intel96 0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward m68k96 0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest m68k96 0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero m68k96 0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward m68k96 0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a088p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a0888p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a088p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a0888p+0 : inexact-ok
+= hypot downward ibm128 0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot upward ibm128 0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a0cp+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward ibm128 0xc.6666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.6666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.6666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot upward ibm128 0xc.6666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward ibm128 0xc.6666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.6666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.6666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot upward ibm128 0xc.6666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot downward binary64 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot tonearest binary64 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot towardzero binary64 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot upward binary64 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652fp+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652fp+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aaa78p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aa8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aacp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aa8p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aacp+0 : inexact-ok
+= hypot downward binary64 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot tonearest binary64 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot towardzero binary64 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot upward binary64 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bedp+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bedp+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afd8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152bp+0 : inexact-ok
+= hypot downward binary64 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest binary64 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero binary64 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward binary64 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566bp+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566bp+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca07p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca04p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca08p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca04p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca08p+0 : inexact-ok
+= hypot downward binary64 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest binary64 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero binary64 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward binary64 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0f48p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a1p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0cp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a1p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e65p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e4p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e8p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e4p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e8p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9a5p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e98p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e98p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9cp+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d4p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d4p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04cp+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04c8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04cp+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04c8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d08p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c071p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c0718p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c071p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c0718p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c04p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c08p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c04p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c08p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08ead8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08e8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08ecp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08e8p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08ecp+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd7p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd7p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f31p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f318p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f31p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f318p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8fp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f4p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8fp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f4p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ca18p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ca2p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ca18p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ca2p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067c8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ccp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067c8p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ccp+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7e28p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c24p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c24p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbb2p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbb28p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbb2p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbb28p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffb8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbcp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffb8p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbcp+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14c68p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14c7p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14c68p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14c7p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd15p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f576p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f5768p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f576p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f5768p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f54p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f58p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f54p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f58p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5fap+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5fa8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5fap+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5fa8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f6p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5cp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f6p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce36b8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce34p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce38p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce34p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce38p+0 : inexact-ok
+= hypot downward intel96 0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest intel96 0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero intel96 0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward intel96 0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward m68k96 0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest m68k96 0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero m68k96 0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward m68k96 0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33eab8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33e8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33ecp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33e8p+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33ecp+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee29p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward ibm128 0xc.666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot upward ibm128 0xc.666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee29p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7238p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7238p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d5972p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a0679926p+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a0679926p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aa8p+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871bp+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871bp+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25bp+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25bp+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 0xc.6666666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot tonearest binary128 0xc.6666666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 0xc.6666666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot upward binary128 0xc.6666666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8e8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7228p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7228p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a0679925p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a0679925p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871ap+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871ap+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25ap+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25ap+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 0xc.666666666666666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.666666666666666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.666666666666666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 0xc.666666666666666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b73dp+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b74p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b74p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d598b8p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d59cp+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067993fp+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067993f8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067993fp+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067993f8p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067994p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067994p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199c4p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a753419ap+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87348p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd874p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd874p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e274p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2748p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e274p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2748p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e28p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e28p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6fc8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6fdp+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6fc8p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6fdp+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666664p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666664p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666664p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6cp+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666664p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d594b8p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666664p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666664p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666664p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666664p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666664p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666664p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666664p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798cp+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666664p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a753419984p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666664p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666664p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666664p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666664p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86f4p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86f48p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86f4p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86f48p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666664p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86cp+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666664p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666664p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86cp+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666664p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e234p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2348p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e234p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2348p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666664p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666664p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666664p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666664p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc67p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc67p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot downward binary128 0xc.66666666666666666666666664p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 0xc.66666666666666666666666664p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 0xc.66666666666666666666666664p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 0xc.66666666666666666666666664p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward ibm128 0xc.66666666666666666666666664p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot tonearest ibm128 0xc.66666666666666666666666664p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot towardzero ibm128 0xc.66666666666666666666666664p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot upward ibm128 0xc.66666666666666666666666664p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+hypot -12.4 -0.7
+= hypot downward binary32 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot tonearest binary32 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot towardzero binary32 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot upward binary32 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot downward binary64 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a455098p+0 : inexact-ok
+= hypot upward binary64 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a4550ap+0 : inexact-ok
+= hypot downward intel96 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot upward intel96 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aedp+0 : inexact-ok
+= hypot downward m68k96 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aecp+0 : inexact-ok
+= hypot upward m68k96 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aedp+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40beb8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40becp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40beb8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40becp+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40bcp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40bcp+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666p+0 -0xb.33333p-4 : 0xc.6b7435a45509aec49781cf40cp+0 : inexact-ok
+= hypot downward binary32 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot tonearest binary32 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot towardzero binary32 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b743p+0 : inexact-ok
+= hypot upward binary32 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot downward binary64 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5p+0 : inexact-ok
+= hypot upward binary64 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c58p+0 : inexact-ok
+= hypot downward intel96 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot upward intel96 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c522p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5221p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9198p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b91ap+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b9p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666p+0 -0xb.33334p-4 : 0xc.6b7435b2c2c5220efb3fac2b94p+0 : inexact-ok
+= hypot downward binary64 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward binary64 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward intel96 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot upward intel96 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c41p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c41p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d629f8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d62ap+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d628p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666p+0 -0xb.333333333333p-4 : 0xc.6b7435a737c8c4007f8f39d62cp+0 : inexact-ok
+= hypot downward binary64 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c88p+0 : inexact-ok
+= hypot upward binary64 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c9p+0 : inexact-ok
+= hypot downward intel96 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot upward intel96 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c48p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c47p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c48p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d9495p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d94958p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d948p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666p+0 -0xb.3333333333338p-4 : 0xc.6b7435a737c8c473ed6aa2d94cp+0 : inexact-ok
+= hypot downward intel96 -0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward intel96 -0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c9ap+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c9a8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4c8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666p+0 -0xb.333333333333333p-4 : 0xc.6b7435a737c8c42ea89dd7f4ccp+0 : inexact-ok
+= hypot downward intel96 -0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward intel96 -0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c43p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361eap+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361ea08p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361eap+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361ea08p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361e8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361ecp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361e8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666p+0 -0xb.333333333333334p-4 : 0xc.6b7435a737c8c42eb70b9361ecp+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cep+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cep+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7435a737c8c42eab80970aap+0 : inexact-ok
+= hypot downward binary128 -0xc.66666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9ce8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9cfp+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970a9cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7435a737c8c42eab80970aap+0 : inexact-ok
+= hypot downward binary32 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot tonearest binary32 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot towardzero binary32 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot upward binary32 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b745p+0 : inexact-ok
+= hypot downward binary64 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot tonearest binary64 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23ap+0 : inexact-ok
+= hypot upward binary64 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a8p+0 : inexact-ok
+= hypot downward intel96 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot upward intel96 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot downward m68k96 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbp+0 : inexact-ok
+= hypot upward m68k96 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dcp+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d81p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d8108p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66667p+0 -0xb.33333p-4 : 0xc.6b74459dd23a4dbb5549637d84p+0 : inexact-ok
+= hypot downward binary32 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot tonearest binary32 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot towardzero binary32 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b744p+0 : inexact-ok
+= hypot upward binary32 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b745p+0 : inexact-ok
+= hypot downward binary64 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff58p+0 : inexact-ok
+= hypot upward binary64 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff6p+0 : inexact-ok
+= hypot downward intel96 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot upward intel96 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae8p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae7p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae8p+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba9648p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba965p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba94p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba98p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba94p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66667p+0 -0xb.33334p-4 : 0xc.6b7445ac3ff5ae76c1d736ba98p+0 : inexact-ok
+= hypot downward binary64 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward binary64 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward intel96 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot upward intel96 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f5p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f4p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f5p+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be921517978p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be92151798p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be9215178p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66667p+0 -0xb.333333333333p-4 : 0xc.6b7445a0b4f95f410be921517cp+0 : inexact-ok
+= hypot downward binary64 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f9p+0 : inexact-ok
+= hypot upward binary64 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f98p+0 : inexact-ok
+= hypot downward intel96 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot upward intel96 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fcp+0 : inexact-ok
+= hypot downward m68k96 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fbp+0 : inexact-ok
+= hypot upward m68k96 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fcp+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdf9p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdf98p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcep+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcdcp+0 : inexact-ok
+= hypot upward ibm128 -0xc.66667p+0 -0xb.3333333333338p-4 : 0xc.6b7445a0b4f95fb479c3f5dcep+0 : inexact-ok
+= hypot downward intel96 -0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward intel96 -0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b868p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b87p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b868p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b87p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410b8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66667p+0 -0xb.333333333333333p-4 : 0xc.6b7445a0b4f95f6f34f78410bcp+0 : inexact-ok
+= hypot downward intel96 -0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward intel96 -0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward m68k96 -0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6p+0 : inexact-ok
+= hypot upward m68k96 -0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f7p+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b49d8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b49ep+0 : inexact-ok
+= hypot downward ibm128 -0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b48p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66667p+0 -0xb.333333333333334p-4 : 0xc.6b7445a0b4f95f6f43653f6b4cp+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b7445a0b4f95f6f37da4322d8p+0 : inexact-ok
+= hypot downward binary128 -0xc.66667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d58p+0 : inexact-ok
+= hypot upward binary128 -0xc.66667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d588p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d4p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b7445a0b4f95f6f37da4322d8p+0 : inexact-ok
+= hypot downward binary64 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6p+0 : inexact-ok
+= hypot upward binary64 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652fp+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652ep+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652fp+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aaa7p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aaa78p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aa8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aacp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aa8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b652e79d827d9aacp+0 : inexact-ok
+= hypot downward binary64 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e718p+0 : inexact-ok
+= hypot upward binary64 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bedp+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71becp+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bedp+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afd78p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afd8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152afcp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e71bec59e5b152bp+0 : inexact-ok
+= hypot downward binary64 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward binary64 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566bp+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566ap+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566bp+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca06f8p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca07p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca04p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca08p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca04p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b037566a771c962ca08p+0 : inexact-ok
+= hypot downward binary64 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375p+0 : inexact-ok
+= hypot upward binary64 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671p+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375672p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0f4p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0f48p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a1p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a0cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375671adfa4906a1p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e648p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e65p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e4p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b037566d59ad7e928e8p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566dp+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566ep+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9a48p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9a5p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e98p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e98p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b037566d5a945a48e9cp+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b037566d59dbaa83d4p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3d78p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3d8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d3cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b037566d59dbaa83d4p+0 : inexact-ok
+= hypot downward binary64 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b68p+0 : inexact-ok
+= hypot upward binary64 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b7p+0 : inexact-ok
+= hypot downward intel96 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot towardzero intel96 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot upward intel96 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2cp+0 : inexact-ok
+= hypot downward m68k96 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2bp+0 : inexact-ok
+= hypot upward m68k96 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2cp+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a42p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a428p+0 : inexact-ok
+= hypot downward ibm128 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a4p+0 : inexact-ok
+= hypot upward ibm128 -0xc.6666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6d2b3870767e7a8p+0 : inexact-ok
+= hypot downward binary64 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e72p+0 : inexact-ok
+= hypot upward binary64 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e728p+0 : inexact-ok
+= hypot downward intel96 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot upward intel96 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723eap+0 : inexact-ok
+= hypot downward m68k96 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9p+0 : inexact-ok
+= hypot upward m68k96 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723eap+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003d8p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003d88p+0 : inexact-ok
+= hypot downward ibm128 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9187df6b003cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.6666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e723e9187df6b004p+0 : inexact-ok
+= hypot downward binary64 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward binary64 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward intel96 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot upward intel96 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e68p+0 : inexact-ok
+= hypot downward m68k96 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e67p+0 : inexact-ok
+= hypot upward m68k96 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e68p+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f65753p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f657538p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f65753p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f657538p+0 : inexact-ok
+= hypot downward ibm128 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f6574p+0 : inexact-ok
+= hypot upward ibm128 -0xc.6666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375e6735b4e2f6578p+0 : inexact-ok
+= hypot downward binary64 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot tonearest binary64 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot towardzero binary64 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b03758p+0 : inexact-ok
+= hypot upward binary64 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0376p+0 : inexact-ok
+= hypot downward intel96 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot tonearest intel96 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot towardzero intel96 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot upward intel96 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6fp+0 : inexact-ok
+= hypot downward m68k96 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6ep+0 : inexact-ok
+= hypot upward m68k96 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6fp+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057d78p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057d8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d057cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.6666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375e6e6c9295d058p+0 : inexact-ok
+= hypot downward intel96 -0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest intel96 -0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero intel96 -0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward intel96 -0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward m68k96 -0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward m68k96 -0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c4548p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c45488p+0 : inexact-ok
+= hypot downward ibm128 -0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c454p+0 : inexact-ok
+= hypot upward ibm128 -0xc.6666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375e6a1845cb5c458p+0 : inexact-ok
+= hypot downward intel96 -0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest intel96 -0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero intel96 -0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward intel96 -0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward m68k96 -0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6ap+0 : inexact-ok
+= hypot upward m68k96 -0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6bp+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a088p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a0888p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a088p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a0888p+0 : inexact-ok
+= hypot downward ibm128 -0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a08p+0 : inexact-ok
+= hypot upward ibm128 -0xc.6666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375e6a192ca712a0cp+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.6666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.6666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.6666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.6666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8abbp+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8abb8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.6666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.6666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.6666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8a8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.6666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375e6a1873f74d8acp+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91p+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbb2p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbb28p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbb2p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbb28p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffb8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbcp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffb8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b91df4878bffbcp+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fp+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14c68p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14c7p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14c68p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14c7p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd14cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e7224fbf55facd15p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccdp+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f576p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f5768p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f576p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f5768p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f54p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f58p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f54p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccddc8ce596f58p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5p+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5fap+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5fa8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5fap+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5fa8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f6p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f5cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd5136a9870f6p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce36bp+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce36b8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce34p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce38p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce34p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd0bf1dcdfce38p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cdp+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33eabp+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33eab8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33e8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33ecp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33e8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd0c004a9b33ecp+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd0bf4bf9ee29p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28dep+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28de8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee28cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd0bf4bf9ee29p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92p+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b93p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04cp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04c8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04cp+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04c8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d04p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666667p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b92dee04bc9d08p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e7225p+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72251p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c071p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c0718p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c071p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c0718p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c04p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c08p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c04p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666667p+0 -0xb.33334p-4 : 0xc.6b743c168e72250beedcdd5c08p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccep+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccfp+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08eadp+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08ead8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08e8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08ecp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08e8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666667p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375ccedc24b8a08ecp+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd7p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd6p+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd7p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f31p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f318p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f31p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f318p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8fp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f4p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8fp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666667p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd613026b7a8f4p+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ca18p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ca2p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ca18p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ca2p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067c8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ccp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067c8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666667p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1beb5a1067ccp+0 : inexact-ok
+= hypot downward intel96 -0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest intel96 -0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero intel96 -0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward intel96 -0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward m68k96 -0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot tonearest m68k96 -0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot towardzero m68k96 -0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1p+0 : inexact-ok
+= hypot upward m68k96 -0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd2p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7e2p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7e28p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd7cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666667p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd1bf9c7cbcd8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666667p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd1bee3ccf7c24p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c215p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2158p+0 : inexact-ok
+= hypot downward ibm128 -0xc.666666666666667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.666666666666667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.666666666666667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c2p+0 : inexact-ok
+= hypot upward ibm128 -0xc.666666666666667p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd1bee3ccf7c24p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7228p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7228p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d5971p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a0679925p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a0679925p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199a98p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871ap+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871ap+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25ap+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25ap+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8dp+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot downward binary128 -0xc.666666666666666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.666666666666666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.666666666666666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 -0xc.666666666666666666666666666p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7238p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b723p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7238p+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d59718p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d5972p+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a0679926p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799258p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a0679926p+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aap+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199aa8p+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871bp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871a8p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd871bp+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25bp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25a8p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e25bp+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8d8p+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot downward binary128 -0xc.6666666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot tonearest binary128 -0xc.6666666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot towardzero binary128 -0xc.6666666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8ep+0 : inexact-ok
+= hypot upward binary128 -0xc.6666666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8e8p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6fc8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6fdp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6fc8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6fdp+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666664p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666664p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666664p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b6cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666664p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d594bp+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d594b8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666664p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666664p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666664p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d594p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666664p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798ff8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666664p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666664p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666664p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06798cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666664p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199838p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a753419984p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666664p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666664p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666664p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a75341998p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666664p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86f4p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86f48p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86f4p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86f48p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666664p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666664p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666664p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd86cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666664p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e234p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2348p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e234p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2348p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666664p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666664p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666664p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666664p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc67p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc67p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666664p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666664p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666664p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666664p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc678p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666664p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc68p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666664p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666664p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666664p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc4p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666664p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b73c8p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b73dp+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b74p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b7p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666668p+0 -0xb.33333p-4 : 0xc.6b743c0820b6b9245853390b74p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d598bp+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d598b8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d598p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666668p+0 -0xb.33334p-4 : 0xc.6b743c168e722502592b59d59cp+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067993fp+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067993f8p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067993fp+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067993f8p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067994p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a06799p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666668p+0 -0xb.333333333333p-4 : 0xc.6b743c0b0375cce42c9a067994p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199c38p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199c4p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a7534199cp+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666668p+0 -0xb.3333333333338p-4 : 0xc.6b743c0b0375cd579a753419ap+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd8734p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87348p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd874p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd87p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666668p+0 -0xb.333333333333333p-4 : 0xc.6b743c0b0375cd1255a88cd874p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e274p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2748p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e274p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e2748p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e28p+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e24p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666668p+0 -0xb.333333333333334p-4 : 0xc.6b743c0b0375cd126416483e28p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 -0xb.333333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333338p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666668p+0 -0xb.3333333333333333333333333p-4 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot downward binary128 -0xc.66666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot tonearest binary128 -0xc.66666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot towardzero binary128 -0xc.66666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becca7p+0 : inexact-ok
+= hypot upward binary128 -0xc.66666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becca78p+0 : inexact-ok
+= hypot downward ibm128 -0xc.66666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot tonearest ibm128 -0xc.66666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+= hypot towardzero ibm128 -0xc.66666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becc8p+0 : inexact-ok
+= hypot upward ibm128 -0xc.66666666666666666666666668p+0 -0xb.33333333333333333333333334p-4 : 0xc.6b743c0b0375cd12588b4becccp+0 : inexact-ok
+hypot 0.75 0
+= hypot downward binary32 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot tonearest binary32 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot towardzero binary32 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot upward binary32 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot downward binary64 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot tonearest binary64 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot towardzero binary64 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot upward binary64 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot downward intel96 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot tonearest intel96 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot towardzero intel96 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot upward intel96 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot downward m68k96 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot tonearest m68k96 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot towardzero m68k96 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot upward m68k96 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot downward binary128 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot tonearest binary128 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot towardzero binary128 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot upward binary128 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot downward ibm128 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot tonearest ibm128 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot towardzero ibm128 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot upward ibm128 0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+hypot -0.75 0
+= hypot downward binary32 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot tonearest binary32 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot towardzero binary32 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot upward binary32 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot downward binary64 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot tonearest binary64 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot towardzero binary64 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot upward binary64 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot downward intel96 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot tonearest intel96 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot towardzero intel96 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot upward intel96 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot downward m68k96 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot tonearest m68k96 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot towardzero m68k96 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot upward m68k96 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot downward binary128 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot tonearest binary128 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot towardzero binary128 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot upward binary128 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot downward ibm128 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot tonearest ibm128 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot towardzero ibm128 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+= hypot upward ibm128 -0xcp-4 0x0p+0 : 0xcp-4 : inexact-ok
+hypot -5.7e7 0
+= hypot downward binary32 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot tonearest binary32 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot towardzero binary32 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot upward binary32 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot downward binary64 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot tonearest binary64 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot towardzero binary64 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot upward binary64 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot downward intel96 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot tonearest intel96 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot towardzero intel96 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot upward intel96 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot downward m68k96 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot tonearest m68k96 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot towardzero m68k96 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot upward m68k96 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot downward binary128 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot tonearest binary128 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot towardzero binary128 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot upward binary128 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot downward ibm128 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot tonearest ibm128 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot towardzero ibm128 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+= hypot upward ibm128 -0x3.65c04p+24 0x0p+0 : 0x3.65c04p+24 : inexact-ok
+hypot 0.75 1.25
+= hypot downward binary32 0xcp-4 0x1.4p+0 : 0x1.752e5p+0 : inexact-ok
+= hypot tonearest binary32 0xcp-4 0x1.4p+0 : 0x1.752e5p+0 : inexact-ok
+= hypot towardzero binary32 0xcp-4 0x1.4p+0 : 0x1.752e5p+0 : inexact-ok
+= hypot upward binary32 0xcp-4 0x1.4p+0 : 0x1.752e52p+0 : inexact-ok
+= hypot downward binary64 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1p+0 : inexact-ok
+= hypot tonearest binary64 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a2p+0 : inexact-ok
+= hypot towardzero binary64 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1p+0 : inexact-ok
+= hypot upward binary64 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a2p+0 : inexact-ok
+= hypot downward intel96 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1b1ap+0 : inexact-ok
+= hypot tonearest intel96 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1b1cp+0 : inexact-ok
+= hypot towardzero intel96 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1b1ap+0 : inexact-ok
+= hypot upward intel96 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1b1cp+0 : inexact-ok
+= hypot downward m68k96 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1b1ap+0 : inexact-ok
+= hypot tonearest m68k96 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1b1cp+0 : inexact-ok
+= hypot towardzero m68k96 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1b1ap+0 : inexact-ok
+= hypot upward m68k96 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1b1cp+0 : inexact-ok
+= hypot downward binary128 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1b1b33b0456f1fbap+0 : inexact-ok
+= hypot tonearest binary128 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1b1b33b0456f1fbbp+0 : inexact-ok
+= hypot towardzero binary128 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1b1b33b0456f1fbap+0 : inexact-ok
+= hypot upward binary128 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1b1b33b0456f1fbbp+0 : inexact-ok
+= hypot downward ibm128 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1b1b33b0456f1f8p+0 : inexact-ok
+= hypot tonearest ibm128 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1b1b33b0456f1f8p+0 : inexact-ok
+= hypot towardzero ibm128 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1b1b33b0456f1f8p+0 : inexact-ok
+= hypot upward ibm128 0xcp-4 0x1.4p+0 : 0x1.752e50db3a3a1b1b33b0456f2p+0 : inexact-ok
+hypot 1.0 0x1p-61
+= hypot downward binary32 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot tonearest binary32 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot towardzero binary32 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot upward binary32 0x1p+0 0x8p-64 : 0x1.000002p+0 : inexact-ok
+= hypot downward binary64 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot tonearest binary64 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot towardzero binary64 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot upward binary64 0x1p+0 0x8p-64 : 0x1.0000000000001p+0 : inexact-ok
+= hypot downward intel96 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot tonearest intel96 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot towardzero intel96 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot upward intel96 0x1p+0 0x8p-64 : 0x1.0000000000000002p+0 : inexact-ok
+= hypot downward m68k96 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot tonearest m68k96 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot towardzero m68k96 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot upward m68k96 0x1p+0 0x8p-64 : 0x1.0000000000000002p+0 : inexact-ok
+= hypot downward binary128 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot tonearest binary128 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot towardzero binary128 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot upward binary128 0x1p+0 0x8p-64 : 0x1.0000000000000000000000000001p+0 : inexact-ok
+= hypot downward ibm128 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot tonearest ibm128 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot towardzero ibm128 0x1p+0 0x8p-64 : 0x1p+0 : inexact-ok
+= hypot upward ibm128 0x1p+0 0x8p-64 : 0x1.000000000000000000000000008p+0 : inexact-ok
+hypot 0x1p+0 0x1.fp-129
+= hypot downward binary32 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot tonearest binary32 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot towardzero binary32 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot upward binary32 0x1p+0 0xf.8p-132 : 0x1.000002p+0 : inexact-ok
+= hypot downward binary64 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot tonearest binary64 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot towardzero binary64 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot upward binary64 0x1p+0 0xf.8p-132 : 0x1.0000000000001p+0 : inexact-ok
+= hypot downward intel96 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot tonearest intel96 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot towardzero intel96 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot upward intel96 0x1p+0 0xf.8p-132 : 0x1.0000000000000002p+0 : inexact-ok
+= hypot downward m68k96 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot tonearest m68k96 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot towardzero m68k96 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot upward m68k96 0x1p+0 0xf.8p-132 : 0x1.0000000000000002p+0 : inexact-ok
+= hypot downward binary128 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot tonearest binary128 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot towardzero binary128 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot upward binary128 0x1p+0 0xf.8p-132 : 0x1.0000000000000000000000000001p+0 : inexact-ok
+= hypot downward ibm128 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot tonearest ibm128 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot towardzero ibm128 0x1p+0 0xf.8p-132 : 0x1p+0 : inexact-ok
+= hypot upward ibm128 0x1p+0 0xf.8p-132 : 0x1.000000000000000000000000008p+0 : inexact-ok
+hypot 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef0123456789ab8p-500
+= hypot downward binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot upward binary32 0x8p-152 0x8p-152 : 0x1p-148 : inexact-ok underflow errno-erange-ok
+= hypot downward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754bp-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3758p-152 : inexact-ok
+= hypot downward binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward binary64 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x1.23456789abcdfp-500 : 0x8.0000000000008p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x1.23456789abcdfp-500 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x1.23456789abcdfp-500 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x1.23456789abcdfp-500 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x1.23456789abcdfp-500 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x1.23456789abcdfp-500 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward binary64 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x1.23456789abcdep-500 : 0x8.0000000000008p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x1.23456789abcdep-500 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x1.23456789abcdep-500 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x1.23456789abcdep-500 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x1.23456789abcdep-500 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x1.23456789abcdep-500 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x1.23456789abcdef02p-500 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x1.23456789abcdef02p-500 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x1.23456789abcdef02p-500 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x1.23456789abcdef02p-500 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x1.23456789abcdef02p-500 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x1.23456789abcdef02p-500 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x1.23456789abcdef02p-500 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x1.23456789abcdef02p-500 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x1.23456789abcdef02p-500 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x1.23456789abcdef02p-500 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x1.23456789abcdef02p-500 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x1.23456789abcdef02p-500 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x1.23456789abcdef02p-500 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x1.23456789abcdef02p-500 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x1.23456789abcdef02p-500 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x1.23456789abcdef02p-500 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x1.23456789abcdefp-500 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x1.23456789abcdefp-500 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x1.23456789abcdefp-500 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x1.23456789abcdefp-500 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x1.23456789abcdefp-500 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x1.23456789abcdefp-500 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x1.23456789abcdefp-500 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x1.23456789abcdefp-500 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x1.23456789abcdefp-500 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x1.23456789abcdefp-500 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x1.23456789abcdefp-500 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x1.23456789abcdefp-500 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x1.23456789abcdefp-500 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x1.23456789abcdefp-500 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x1.23456789abcdefp-500 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x1.23456789abcdefp-500 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x1.23456789abcdef0123456789ab8p-500 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x1.23456789abcdef0123456789ab8p-500 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x1.23456789abcdef0123456789ab8p-500 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x1.23456789abcdef0123456789ab8p-500 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x1.23456789abcdef0123456789ab8p-500 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x1.23456789abcdef0123456789ab8p-500 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x1.23456789abcdef0123456789ab8p-500 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x1.23456789abcdef0123456789ab8p-500 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary64 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot tonearest binary64 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot towardzero binary64 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot upward binary64 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot downward intel96 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot upward intel96 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot downward binary128 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot upward binary128 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x1.23456789abcdfp-500 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot downward binary64 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot tonearest binary64 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot towardzero binary64 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot upward binary64 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot downward intel96 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot upward intel96 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot downward binary128 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot upward binary128 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x1.23456789abcdep-500 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot downward intel96 0x0p+0 0x1.23456789abcdef02p-500 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x1.23456789abcdef02p-500 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x1.23456789abcdef02p-500 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot upward intel96 0x0p+0 0x1.23456789abcdef02p-500 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x1.23456789abcdef02p-500 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x1.23456789abcdef02p-500 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x1.23456789abcdef02p-500 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x1.23456789abcdef02p-500 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot downward binary128 0x0p+0 0x1.23456789abcdef02p-500 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x1.23456789abcdef02p-500 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x1.23456789abcdef02p-500 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot upward binary128 0x0p+0 0x1.23456789abcdef02p-500 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x1.23456789abcdef02p-500 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x1.23456789abcdef02p-500 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x1.23456789abcdef02p-500 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x1.23456789abcdef02p-500 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot downward intel96 0x0p+0 0x1.23456789abcdefp-500 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x1.23456789abcdefp-500 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x1.23456789abcdefp-500 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot upward intel96 0x0p+0 0x1.23456789abcdefp-500 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x1.23456789abcdefp-500 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x1.23456789abcdefp-500 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x1.23456789abcdefp-500 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x1.23456789abcdefp-500 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot downward binary128 0x0p+0 0x1.23456789abcdefp-500 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x1.23456789abcdefp-500 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x1.23456789abcdefp-500 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot upward binary128 0x0p+0 0x1.23456789abcdefp-500 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x1.23456789abcdefp-500 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x1.23456789abcdefp-500 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x1.23456789abcdefp-500 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x1.23456789abcdefp-500 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot downward binary128 0x0p+0 0x1.23456789abcdef0123456789ab8p-500 : 0x1.23456789abcdef0123456789ab8p-500 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x1.23456789abcdef0123456789ab8p-500 : 0x1.23456789abcdef0123456789ab8p-500 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x1.23456789abcdef0123456789ab8p-500 : 0x1.23456789abcdef0123456789ab8p-500 : inexact-ok
+= hypot upward binary128 0x0p+0 0x1.23456789abcdef0123456789ab8p-500 : 0x1.23456789abcdef0123456789ab8p-500 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x1.23456789abcdef0123456789ab8p-500 : 0x1.23456789abcdef0123456789ab8p-500 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x1.23456789abcdef0123456789ab8p-500 : 0x1.23456789abcdef0123456789ab8p-500 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x1.23456789abcdef0123456789ab8p-500 : 0x1.23456789abcdef0123456789ab8p-500 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x1.23456789abcdef0123456789ab8p-500 : 0x1.23456789abcdef0123456789ab8p-500 : inexact-ok
+= hypot downward binary64 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x1.23456789abcdfp-500 0x8p-152 : 0x8.0000000000008p-152 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdfp-500 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdfp-500 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdfp-500 0x8p-152 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdfp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdfp-500 0x8p-152 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward binary64 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot tonearest binary64 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot towardzero binary64 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot upward binary64 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdfp-500 0x0p+0 : 0x1.23456789abcdfp-500 : inexact-ok
+= hypot downward binary64 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4p-500 : inexact-ok
+= hypot tonearest binary64 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4p-500 : inexact-ok
+= hypot towardzero binary64 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4p-500 : inexact-ok
+= hypot upward binary64 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c5p-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4556p-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4558p-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4556p-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4558p-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4556p-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4558p-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4556p-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4558p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4557b0c4775bcc8ep-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4557b0c4775bcc8ep-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4557b0c4775bcc8ep-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4557b0c4775bcc8fp-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4557b0c4775bcc8p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4557b0c4775bcc8p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4557b0c4775bcc8p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4557b0c4775bcdp-500 : inexact-ok
+= hypot downward binary64 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3p-500 : inexact-ok
+= hypot tonearest binary64 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c4p-500 : inexact-ok
+= hypot towardzero binary64 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3p-500 : inexact-ok
+= hypot upward binary64 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c4p-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3a06p-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3a08p-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3a06p-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3a08p-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3a06p-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3a08p-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3a06p-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3a08p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3a07619137bde66dp-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3a07619137bde66ep-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3a07619137bde66dp-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3a07619137bde66ep-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3a07619137bde6p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3a07619137bde68p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3a07619137bde6p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3a07619137bde68p-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdfp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c44a4p-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdfp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c44a4p-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdfp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c44a4p-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdfp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c44a6p-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdfp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c44a4p-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdfp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c44a4p-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdfp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c44a4p-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdfp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c44a6p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdfp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c44a415db29c9e1e6p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdfp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c44a415db29c9e1e7p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdfp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c44a415db29c9e1e6p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdfp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c44a415db29c9e1e7p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c44a415db29c9e18p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c44a415db29c9e2p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c44a415db29c9e18p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c44a415db29c9e2p-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdfp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c44a2p-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdfp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c44a2p-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdfp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c44a2p-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdfp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c44a4p-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdfp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c44a2p-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdfp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c44a2p-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdfp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c44a2p-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdfp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c44a4p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdfp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c44a2abd14361ee29p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdfp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c44a2abd14361ee2ap-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdfp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c44a2abd14361ee29p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdfp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c44a2abd14361ee2ap-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c44a2abd14361eep-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c44a2abd14361eep-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c44a2abd14361eep-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c44a2abd14361ee8p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdfp-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c44a379c6f761e6f8p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdfp-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c44a379c6f761e6f9p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdfp-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c44a379c6f761e6f8p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdfp-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c44a379c6f761e6f9p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c44a379c6f761e68p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c44a379c6f761e7p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c44a379c6f761e68p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdfp-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c44a379c6f761e7p-500 : inexact-ok
+= hypot downward binary64 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x1.23456789abcdep-500 0x8p-152 : 0x8.0000000000008p-152 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdep-500 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdep-500 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdep-500 0x8p-152 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdep-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdep-500 0x8p-152 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward binary64 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot tonearest binary64 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot towardzero binary64 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot upward binary64 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdep-500 0x0p+0 : 0x1.23456789abcdep-500 : inexact-ok
+= hypot downward binary64 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3p-500 : inexact-ok
+= hypot tonearest binary64 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4p-500 : inexact-ok
+= hypot towardzero binary64 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3p-500 : inexact-ok
+= hypot upward binary64 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c4p-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3a06p-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3a08p-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3a06p-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3a08p-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3a06p-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3a08p-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3a06p-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3a08p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3a07619137bde66dp-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3a07619137bde66ep-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3a07619137bde66dp-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3a07619137bde66ep-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3a07619137bde6p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3a07619137bde68p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3a07619137bde6p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdep-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c3a07619137bde68p-500 : inexact-ok
+= hypot downward binary64 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2p-500 : inexact-ok
+= hypot tonearest binary64 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3p-500 : inexact-ok
+= hypot towardzero binary64 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2p-500 : inexact-ok
+= hypot upward binary64 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3p-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2eb6p-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2eb8p-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2eb6p-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2eb8p-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2eb6p-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2eb8p-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2eb6p-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2eb8p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2eb7125df81ffffdp-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2eb7125df81ffffep-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2eb7125df81ffffdp-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2eb7125df81ffffep-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2eb7125df81fff8p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2eb7125df82p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2eb7125df81fff8p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdep-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c2eb7125df82p-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdep-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdep-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c3954p-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdep-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdep-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c3954p-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdep-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdep-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c3954p-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdep-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdep-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c3954p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdep-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c3953c6a7ea2bfbc1p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdep-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c3953c6a7ea2bfbc1p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdep-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c3953c6a7ea2bfbc1p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdep-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c3953c6a7ea2bfbc2p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdep-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c3953c6a7ea2bfb8p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdep-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c3953c6a7ea2bfcp-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdep-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c3953c6a7ea2bfb8p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdep-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c3953c6a7ea2bfcp-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdep-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdep-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdep-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdep-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c3954p-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdep-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdep-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdep-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdep-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c3954p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdep-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c39525c9e03c40804p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdep-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c39525c9e03c40804p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdep-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c39525c9e03c40804p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdep-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c39525c9e03c40805p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdep-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c39525c9e03c408p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdep-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c39525c9e03c408p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdep-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c39525c9e03c408p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdep-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c39525c9e03c4088p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdep-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c39532a93b7c400d3p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdep-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c39532a93b7c400d3p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdep-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c39532a93b7c400d3p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdep-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c39532a93b7c400d4p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdep-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c39532a93b7c4008p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdep-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c39532a93b7c401p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdep-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c39532a93b7c4008p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdep-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c39532a93b7c401p-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdef02p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdef02p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdef02p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdef02p-500 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdef02p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdef02p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdef02p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdef02p-500 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdef02p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdef02p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdef02p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdef02p-500 0x8p-152 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdef02p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdef02p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdef02p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdef02p-500 0x8p-152 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdef02p-500 0x0p+0 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdef02p-500 0x0p+0 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdef02p-500 0x0p+0 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdef02p-500 0x0p+0 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdef02p-500 0x0p+0 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdef02p-500 0x0p+0 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdef02p-500 0x0p+0 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdef02p-500 0x0p+0 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdef02p-500 0x0p+0 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdef02p-500 0x0p+0 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdef02p-500 0x0p+0 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdef02p-500 0x0p+0 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdef02p-500 0x0p+0 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdef02p-500 0x0p+0 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdef02p-500 0x0p+0 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdef02p-500 0x0p+0 : 0x1.23456789abcdef02p-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdef02p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a4p-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdef02p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a4p-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdef02p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a4p-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdef02p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a6p-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdef02p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a4p-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdef02p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a4p-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdef02p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a4p-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdef02p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a6p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a415db29c9e1e6p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a415db29c9e1e7p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a415db29c9e1e6p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a415db29c9e1e7p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a415db29c9e18p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a415db29c9e2p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a415db29c9e18p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a415db29c9e2p-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdef02p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdef02p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3954p-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdef02p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdef02p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3954p-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdef02p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdef02p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3954p-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdef02p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdef02p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3954p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3953c6a7ea2bfbc1p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3953c6a7ea2bfbc1p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3953c6a7ea2bfbc1p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3953c6a7ea2bfbc2p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3953c6a7ea2bfb8p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3953c6a7ea2bfcp-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3953c6a7ea2bfb8p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3953c6a7ea2bfcp-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdef02p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43fp-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdef02p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43fp-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdef02p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43fp-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdef02p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43f2p-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdef02p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43fp-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdef02p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43fp-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdef02p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43fp-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdef02p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43f2p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43f07af1dc37f73ep-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43f07af1dc37f73fp-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43f07af1dc37f73ep-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43f07af1dc37f73fp-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43f07af1dc37f7p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43f07af1dc37f7p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43f07af1dc37f7p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43f07af1dc37f78p-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdef02p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43eep-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdef02p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43fp-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdef02p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43eep-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdef02p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43fp-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdef02p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43eep-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdef02p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43fp-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdef02p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43eep-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdef02p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43fp-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ef10e7f5d00381p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ef10e7f5d00382p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ef10e7f5d00381p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ef10e7f5d00382p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ef10e7f5d0038p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ef10e7f5d0038p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ef10e7f5d0038p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ef10e7f5d004p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43efdedda9cffc5p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43efdedda9cffc51p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43efdedda9cffc5p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdef02p-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43efdedda9cffc51p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43efdedda9cffcp-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43efdedda9cffc8p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43efdedda9cffcp-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdef02p-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43efdedda9cffc8p-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdefp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdefp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdefp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdefp-500 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdefp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdefp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdefp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdefp-500 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdefp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdefp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdefp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdefp-500 0x8p-152 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdefp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdefp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdefp-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdefp-500 0x8p-152 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdefp-500 0x0p+0 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdefp-500 0x0p+0 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdefp-500 0x0p+0 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdefp-500 0x0p+0 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdefp-500 0x0p+0 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdefp-500 0x0p+0 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdefp-500 0x0p+0 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdefp-500 0x0p+0 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdefp-500 0x0p+0 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdefp-500 0x0p+0 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdefp-500 0x0p+0 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdefp-500 0x0p+0 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdefp-500 0x0p+0 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdefp-500 0x0p+0 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdefp-500 0x0p+0 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdefp-500 0x0p+0 : 0x1.23456789abcdefp-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdefp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a2p-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdefp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a2p-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdefp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a2p-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdefp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a4p-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdefp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a2p-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdefp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a2p-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdefp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a2p-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdefp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a4p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdefp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a2abd14361ee29p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdefp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a2abd14361ee2ap-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdefp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a2abd14361ee29p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdefp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a2abd14361ee2ap-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a2abd14361eep-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a2abd14361eep-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a2abd14361eep-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a2abd14361ee8p-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdefp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdefp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdefp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdefp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3954p-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdefp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdefp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdefp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3952p-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdefp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c3954p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdefp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c39525c9e03c40804p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdefp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c39525c9e03c40804p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdefp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c39525c9e03c40804p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdefp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c39525c9e03c40805p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c39525c9e03c408p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c39525c9e03c408p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c39525c9e03c408p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c39525c9e03c4088p-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdefp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43eep-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdefp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43fp-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdefp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43eep-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdefp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43fp-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdefp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43eep-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdefp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43fp-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdefp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43eep-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdefp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43fp-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdefp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43ef10e7f5d00381p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdefp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43ef10e7f5d00382p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdefp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43ef10e7f5d00381p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdefp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43ef10e7f5d00382p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43ef10e7f5d0038p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43ef10e7f5d0038p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43ef10e7f5d0038p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43ef10e7f5d004p-500 : inexact-ok
+= hypot downward intel96 0x1.23456789abcdefp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ecp-500 : inexact-ok
+= hypot tonearest intel96 0x1.23456789abcdefp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43eep-500 : inexact-ok
+= hypot towardzero intel96 0x1.23456789abcdefp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ecp-500 : inexact-ok
+= hypot upward intel96 0x1.23456789abcdefp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43eep-500 : inexact-ok
+= hypot downward m68k96 0x1.23456789abcdefp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ecp-500 : inexact-ok
+= hypot tonearest m68k96 0x1.23456789abcdefp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43eep-500 : inexact-ok
+= hypot towardzero m68k96 0x1.23456789abcdefp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ecp-500 : inexact-ok
+= hypot upward m68k96 0x1.23456789abcdefp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43eep-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdefp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43eda6de0f680fc5p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdefp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43eda6de0f680fc5p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdefp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43eda6de0f680fc5p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdefp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43eda6de0f680fc6p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43eda6de0f680f8p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43eda6de0f681p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43eda6de0f680f8p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43eda6de0f681p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdefp-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43ee74d3c3680894p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdefp-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43ee74d3c3680894p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdefp-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43ee74d3c3680894p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdefp-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43ee74d3c3680895p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43ee74d3c368088p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43ee74d3c368088p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43ee74d3c368088p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdefp-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43ee74d3c36809p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdef0123456789ab8p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdef0123456789ab8p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdef0123456789ab8p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdef0123456789ab8p-500 0x8p-152 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdef0123456789ab8p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdef0123456789ab8p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdef0123456789ab8p-500 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdef0123456789ab8p-500 0x8p-152 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdef0123456789ab8p-500 0x0p+0 : 0x1.23456789abcdef0123456789ab8p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdef0123456789ab8p-500 0x0p+0 : 0x1.23456789abcdef0123456789ab8p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdef0123456789ab8p-500 0x0p+0 : 0x1.23456789abcdef0123456789ab8p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdef0123456789ab8p-500 0x0p+0 : 0x1.23456789abcdef0123456789ab8p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdef0123456789ab8p-500 0x0p+0 : 0x1.23456789abcdef0123456789ab8p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdef0123456789ab8p-500 0x0p+0 : 0x1.23456789abcdef0123456789ab8p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdef0123456789ab8p-500 0x0p+0 : 0x1.23456789abcdef0123456789ab8p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdef0123456789ab8p-500 0x0p+0 : 0x1.23456789abcdef0123456789ab8p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a379c6f761e6f8p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a379c6f761e6f9p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a379c6f761e6f8p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a379c6f761e6f9p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a379c6f761e68p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a379c6f761e7p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a379c6f761e68p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdfp-500 : 0x1.9beb67fff20c44a379c6f761e7p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c39532a93b7c400d3p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c39532a93b7c400d3p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c39532a93b7c400d3p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c39532a93b7c400d4p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c39532a93b7c4008p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c39532a93b7c401p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c39532a93b7c4008p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdep-500 : 0x1.9beb67fff20c39532a93b7c401p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43efdedda9cffc5p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43efdedda9cffc51p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43efdedda9cffc5p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43efdedda9cffc51p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43efdedda9cffcp-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43efdedda9cffc8p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43efdedda9cffcp-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef02p-500 : 0x1.9beb67fff20c43efdedda9cffc8p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ee74d3c3680894p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ee74d3c3680894p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ee74d3c3680894p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ee74d3c3680895p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ee74d3c368088p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ee74d3c368088p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ee74d3c368088p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdefp-500 : 0x1.9beb67fff20c43ee74d3c36809p-500 : inexact-ok
+= hypot downward binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43ef42c977680163p-500 : inexact-ok
+= hypot tonearest binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43ef42c977680163p-500 : inexact-ok
+= hypot towardzero binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43ef42c977680163p-500 : inexact-ok
+= hypot upward binary128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43ef42c977680164p-500 : inexact-ok
+= hypot downward ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43ef42c9776801p-500 : inexact-ok
+= hypot tonearest ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43ef42c97768018p-500 : inexact-ok
+= hypot towardzero ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43ef42c9776801p-500 : inexact-ok
+= hypot upward ibm128 0x1.23456789abcdef0123456789ab8p-500 0x1.23456789abcdef0123456789ab8p-500 : 0x1.9beb67fff20c43ef42c97768018p-500 : inexact-ok
+hypot 0x3p125 0x4p125 no-test-inline:binary32
+= hypot downward binary32 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot tonearest binary32 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot towardzero binary32 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot upward binary32 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot downward binary64 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot tonearest binary64 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot towardzero binary64 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot upward binary64 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot downward intel96 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot tonearest intel96 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot towardzero intel96 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot upward intel96 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot downward m68k96 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot tonearest m68k96 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot towardzero m68k96 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot upward m68k96 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot downward binary128 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot tonearest binary128 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot towardzero binary128 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot upward binary128 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot downward ibm128 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot tonearest ibm128 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot towardzero ibm128 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+= hypot upward ibm128 0x6p+124 0x8p+124 : 0xap+124 : no-test-inline:binary32 inexact-ok
+hypot 0x1.234566p-126 0x1.234566p-126 no-test-inline:binary32
+= hypot downward binary32 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad9p-128 : no-test-inline:binary32 inexact-ok
+= hypot tonearest binary32 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad98p-128 : no-test-inline:binary32 inexact-ok
+= hypot towardzero binary32 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad9p-128 : no-test-inline:binary32 inexact-ok
+= hypot upward binary32 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad98p-128 : no-test-inline:binary32 inexact-ok
+= hypot downward binary64 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786cp-128 : no-test-inline:binary32 inexact-ok
+= hypot tonearest binary64 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786cp-128 : no-test-inline:binary32 inexact-ok
+= hypot towardzero binary64 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786cp-128 : no-test-inline:binary32 inexact-ok
+= hypot upward binary64 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd787p-128 : no-test-inline:binary32 inexact-ok
+= hypot downward intel96 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786d61p-128 : no-test-inline:binary32 inexact-ok
+= hypot tonearest intel96 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786d61p-128 : no-test-inline:binary32 inexact-ok
+= hypot towardzero intel96 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786d61p-128 : no-test-inline:binary32 inexact-ok
+= hypot upward intel96 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786d618p-128 : no-test-inline:binary32 inexact-ok
+= hypot downward m68k96 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786d61p-128 : no-test-inline:binary32 inexact-ok
+= hypot tonearest m68k96 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786d61p-128 : no-test-inline:binary32 inexact-ok
+= hypot towardzero m68k96 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786d61p-128 : no-test-inline:binary32 inexact-ok
+= hypot upward m68k96 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786d618p-128 : no-test-inline:binary32 inexact-ok
+= hypot downward binary128 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786d6112b947029048p-128 : no-test-inline:binary32 inexact-ok
+= hypot tonearest binary128 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786d6112b947029048p-128 : no-test-inline:binary32 inexact-ok
+= hypot towardzero binary128 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786d6112b947029048p-128 : no-test-inline:binary32 inexact-ok
+= hypot upward binary128 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786d6112b9470290484p-128 : no-test-inline:binary32 inexact-ok
+= hypot downward ibm128 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786d6112b94702904p-128 : no-test-inline:binary32 inexact-ok
+= hypot tonearest ibm128 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786d6112b94702904p-128 : no-test-inline:binary32 inexact-ok
+= hypot towardzero ibm128 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786d6112b94702904p-128 : no-test-inline:binary32 inexact-ok
+= hypot upward ibm128 0x4.8d1598p-128 0x4.8d1598p-128 : 0x6.6fad974cd786d6112b94702906p-128 : no-test-inline:binary32 inexact-ok
+hypot 0x3p1021 0x4p1021 no-test-inline:binary64
+= hypot downward binary32 0xf.fffffp+124 0xf.fffffp+124 : 0xf.fffffp+124 : no-test-inline:binary64 inexact-ok overflow errno-erange-ok
+= hypot tonearest binary32 0xf.fffffp+124 0xf.fffffp+124 : plus_infty : no-test-inline:binary64 inexact-ok overflow errno-erange
+= hypot towardzero binary32 0xf.fffffp+124 0xf.fffffp+124 : 0xf.fffffp+124 : no-test-inline:binary64 inexact-ok overflow errno-erange-ok
+= hypot upward binary32 0xf.fffffp+124 0xf.fffffp+124 : plus_infty : no-test-inline:binary64 inexact-ok overflow errno-erange
+= hypot downward binary64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : no-test-inline:binary64 inexact-ok
+= hypot tonearest binary64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : no-test-inline:binary64 inexact-ok
+= hypot towardzero binary64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : no-test-inline:binary64 inexact-ok
+= hypot upward binary64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d67p+128 : no-test-inline:binary64 inexact-ok
+= hypot downward intel96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline:binary64 inexact-ok
+= hypot tonearest intel96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline:binary64 inexact-ok
+= hypot towardzero intel96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline:binary64 inexact-ok
+= hypot upward intel96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66116p+128 : no-test-inline:binary64 inexact-ok
+= hypot downward m68k96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline:binary64 inexact-ok
+= hypot tonearest m68k96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline:binary64 inexact-ok
+= hypot towardzero m68k96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline:binary64 inexact-ok
+= hypot upward m68k96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66116p+128 : no-test-inline:binary64 inexact-ok
+= hypot downward binary128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef82p+128 : no-test-inline:binary64 inexact-ok
+= hypot tonearest binary128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef82p+128 : no-test-inline:binary64 inexact-ok
+= hypot towardzero binary128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef82p+128 : no-test-inline:binary64 inexact-ok
+= hypot upward binary128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef83p+128 : no-test-inline:binary64 inexact-ok
+= hypot downward ibm128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef8p+128 : no-test-inline:binary64 inexact-ok
+= hypot tonearest ibm128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef8p+128 : no-test-inline:binary64 inexact-ok
+= hypot towardzero ibm128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef8p+128 : no-test-inline:binary64 inexact-ok
+= hypot upward ibm128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3fp+128 : no-test-inline:binary64 inexact-ok
+= hypot downward binary64 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:binary64 inexact-ok
+= hypot tonearest binary64 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:binary64 inexact-ok
+= hypot towardzero binary64 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:binary64 inexact-ok
+= hypot upward binary64 0xf.fffffp+124 0x8p+1020 : 0x8.0000000000008p+1020 : no-test-inline:binary64 inexact-ok
+= hypot downward intel96 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:binary64 inexact-ok
+= hypot tonearest intel96 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:binary64 inexact-ok
+= hypot towardzero intel96 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:binary64 inexact-ok
+= hypot upward intel96 0xf.fffffp+124 0x8p+1020 : 0x8.000000000000001p+1020 : no-test-inline:binary64 inexact-ok
+= hypot downward m68k96 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:binary64 inexact-ok
+= hypot tonearest m68k96 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:binary64 inexact-ok
+= hypot towardzero m68k96 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:binary64 inexact-ok
+= hypot upward m68k96 0xf.fffffp+124 0x8p+1020 : 0x8.000000000000001p+1020 : no-test-inline:binary64 inexact-ok
+= hypot downward binary128 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:binary64 inexact-ok
+= hypot tonearest binary128 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:binary64 inexact-ok
+= hypot towardzero binary128 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:binary64 inexact-ok
+= hypot upward binary128 0xf.fffffp+124 0x8p+1020 : 0x8.0000000000000000000000000008p+1020 : no-test-inline:binary64 inexact-ok
+= hypot downward ibm128 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:binary64 inexact-ok
+= hypot tonearest ibm128 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:binary64 inexact-ok
+= hypot towardzero ibm128 0xf.fffffp+124 0x8p+1020 : 0x8p+1020 : no-test-inline:binary64 inexact-ok
+= hypot upward ibm128 0xf.fffffp+124 0x8p+1020 : 0x8.00000000000000000000000004p+1020 : no-test-inline:binary64 inexact-ok
+= hypot downward binary64 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:binary64 inexact-ok
+= hypot tonearest binary64 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:binary64 inexact-ok
+= hypot towardzero binary64 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:binary64 inexact-ok
+= hypot upward binary64 0x6p+1020 0xf.fffffp+124 : 0x6.0000000000004p+1020 : no-test-inline:binary64 inexact-ok
+= hypot downward intel96 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:binary64 inexact-ok
+= hypot tonearest intel96 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:binary64 inexact-ok
+= hypot towardzero intel96 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:binary64 inexact-ok
+= hypot upward intel96 0x6p+1020 0xf.fffffp+124 : 0x6.0000000000000008p+1020 : no-test-inline:binary64 inexact-ok
+= hypot downward m68k96 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:binary64 inexact-ok
+= hypot tonearest m68k96 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:binary64 inexact-ok
+= hypot towardzero m68k96 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:binary64 inexact-ok
+= hypot upward m68k96 0x6p+1020 0xf.fffffp+124 : 0x6.0000000000000008p+1020 : no-test-inline:binary64 inexact-ok
+= hypot downward binary128 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:binary64 inexact-ok
+= hypot tonearest binary128 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:binary64 inexact-ok
+= hypot towardzero binary128 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:binary64 inexact-ok
+= hypot upward binary128 0x6p+1020 0xf.fffffp+124 : 0x6.0000000000000000000000000004p+1020 : no-test-inline:binary64 inexact-ok
+= hypot downward ibm128 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:binary64 inexact-ok
+= hypot tonearest ibm128 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:binary64 inexact-ok
+= hypot towardzero ibm128 0x6p+1020 0xf.fffffp+124 : 0x6p+1020 : no-test-inline:binary64 inexact-ok
+= hypot upward ibm128 0x6p+1020 0xf.fffffp+124 : 0x6.00000000000000000000000002p+1020 : no-test-inline:binary64 inexact-ok
+= hypot downward binary64 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot tonearest binary64 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot towardzero binary64 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot upward binary64 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot downward intel96 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot tonearest intel96 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot towardzero intel96 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot upward intel96 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot downward m68k96 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot tonearest m68k96 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot towardzero m68k96 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot upward m68k96 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot downward binary128 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot tonearest binary128 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot towardzero binary128 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot upward binary128 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot downward ibm128 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot tonearest ibm128 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot towardzero ibm128 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+= hypot upward ibm128 0x6p+1020 0x8p+1020 : 0xap+1020 : no-test-inline:binary64 inexact-ok
+hypot 0x1p+0 0x0.3ep-1022 no-test-inline:binary64
+= hypot downward binary32 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot tonearest binary32 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot towardzero binary32 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot upward binary32 0x1p+0 0x8p-152 : 0x1.000002p+0 : no-test-inline:binary64 inexact-ok
+= hypot downward binary64 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot tonearest binary64 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot towardzero binary64 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot upward binary64 0x1p+0 0x8p-152 : 0x1.0000000000001p+0 : no-test-inline:binary64 inexact-ok
+= hypot downward intel96 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot tonearest intel96 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot towardzero intel96 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot upward intel96 0x1p+0 0x8p-152 : 0x1.0000000000000002p+0 : no-test-inline:binary64 inexact-ok
+= hypot downward m68k96 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot tonearest m68k96 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot towardzero m68k96 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot upward m68k96 0x1p+0 0x8p-152 : 0x1.0000000000000002p+0 : no-test-inline:binary64 inexact-ok
+= hypot downward binary128 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot tonearest binary128 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot towardzero binary128 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot upward binary128 0x1p+0 0x8p-152 : 0x1.0000000000000000000000000001p+0 : no-test-inline:binary64 inexact-ok
+= hypot downward ibm128 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot tonearest ibm128 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot towardzero ibm128 0x1p+0 0x8p-152 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot upward ibm128 0x1p+0 0x8p-152 : 0x1.000000000000000000000000008p+0 : no-test-inline:binary64 inexact-ok
+= hypot downward binary32 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot tonearest binary32 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot towardzero binary32 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot upward binary32 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot downward binary64 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot tonearest binary64 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot towardzero binary64 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot upward binary64 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot downward intel96 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot tonearest intel96 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot towardzero intel96 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot upward intel96 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot downward m68k96 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot tonearest m68k96 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot towardzero m68k96 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot upward m68k96 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot downward binary128 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot tonearest binary128 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot towardzero binary128 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot upward binary128 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot downward ibm128 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot tonearest ibm128 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot towardzero ibm128 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot upward ibm128 0x1p+0 0x0p+0 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot downward binary64 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot tonearest binary64 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot towardzero binary64 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot upward binary64 0x1p+0 0xf.8p-1028 : 0x1.0000000000001p+0 : no-test-inline:binary64 inexact-ok
+= hypot downward intel96 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot tonearest intel96 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot towardzero intel96 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot upward intel96 0x1p+0 0xf.8p-1028 : 0x1.0000000000000002p+0 : no-test-inline:binary64 inexact-ok
+= hypot downward m68k96 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot tonearest m68k96 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot towardzero m68k96 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot upward m68k96 0x1p+0 0xf.8p-1028 : 0x1.0000000000000002p+0 : no-test-inline:binary64 inexact-ok
+= hypot downward binary128 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot tonearest binary128 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot towardzero binary128 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot upward binary128 0x1p+0 0xf.8p-1028 : 0x1.0000000000000000000000000001p+0 : no-test-inline:binary64 inexact-ok
+= hypot downward ibm128 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot tonearest ibm128 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot towardzero ibm128 0x1p+0 0xf.8p-1028 : 0x1p+0 : no-test-inline:binary64 inexact-ok
+= hypot upward ibm128 0x1p+0 0xf.8p-1028 : 0x1.000000000000000000000000008p+0 : no-test-inline:binary64 inexact-ok
+hypot 0x3p16381 0x4p16381 no-test-inline
+= hypot downward binary32 0xf.fffffp+124 0xf.fffffp+124 : 0xf.fffffp+124 : no-test-inline inexact-ok overflow errno-erange-ok
+= hypot tonearest binary32 0xf.fffffp+124 0xf.fffffp+124 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero binary32 0xf.fffffp+124 0xf.fffffp+124 : 0xf.fffffp+124 : no-test-inline inexact-ok overflow errno-erange-ok
+= hypot upward binary32 0xf.fffffp+124 0xf.fffffp+124 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot downward binary64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : no-test-inline inexact-ok
+= hypot tonearest binary64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : no-test-inline inexact-ok
+= hypot towardzero binary64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : no-test-inline inexact-ok
+= hypot upward binary64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d67p+128 : no-test-inline inexact-ok
+= hypot downward intel96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline inexact-ok
+= hypot tonearest intel96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline inexact-ok
+= hypot towardzero intel96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline inexact-ok
+= hypot upward intel96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66116p+128 : no-test-inline inexact-ok
+= hypot downward m68k96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline inexact-ok
+= hypot upward m68k96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66116p+128 : no-test-inline inexact-ok
+= hypot downward binary128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef82p+128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef82p+128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef82p+128 : no-test-inline inexact-ok
+= hypot upward binary128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef83p+128 : no-test-inline inexact-ok
+= hypot downward ibm128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef8p+128 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef8p+128 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef8p+128 : no-test-inline inexact-ok
+= hypot upward ibm128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3fp+128 : no-test-inline inexact-ok
+= hypot downward binary64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot tonearest binary64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero binary64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot upward binary64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot downward intel96 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot tonearest intel96 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero intel96 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot upward intel96 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff801p+1020 : no-test-inline inexact-ok
+= hypot downward m68k96 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot upward m68k96 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff801p+1020 : no-test-inline inexact-ok
+= hypot downward binary128 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot tonearest binary128 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot upward binary128 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8000000000000008p+1020 : no-test-inline inexact-ok
+= hypot downward ibm128 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot upward ibm128 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff80000000000004p+1020 : no-test-inline inexact-ok
+= hypot downward intel96 0xf.fffffp+124 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot tonearest intel96 0xf.fffffp+124 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot towardzero intel96 0xf.fffffp+124 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot upward intel96 0xf.fffffp+124 0x8p+16380 : 0x8.000000000000001p+16380 : no-test-inline inexact-ok
+= hypot downward m68k96 0xf.fffffp+124 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0xf.fffffp+124 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0xf.fffffp+124 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot upward m68k96 0xf.fffffp+124 0x8p+16380 : 0x8.000000000000001p+16380 : no-test-inline inexact-ok
+= hypot downward binary128 0xf.fffffp+124 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot tonearest binary128 0xf.fffffp+124 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.fffffp+124 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot upward binary128 0xf.fffffp+124 0x8p+16380 : 0x8.0000000000000000000000000008p+16380 : no-test-inline inexact-ok
+= hypot downward binary128 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline inexact-ok
+= hypot tonearest binary128 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline inexact-ok
+= hypot upward binary128 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffc08p+1020 : no-test-inline inexact-ok
+= hypot downward ibm128 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline inexact-ok
+= hypot upward ibm128 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange
+= hypot downward binary64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot tonearest binary64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero binary64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot upward binary64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot downward intel96 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot tonearest intel96 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero intel96 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot upward intel96 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff801p+1020 : no-test-inline inexact-ok
+= hypot downward m68k96 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot upward m68k96 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff801p+1020 : no-test-inline inexact-ok
+= hypot downward binary128 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot tonearest binary128 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot upward binary128 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8000000000000008p+1020 : no-test-inline inexact-ok
+= hypot downward ibm128 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot upward ibm128 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff80000000000004p+1020 : no-test-inline inexact-ok
+= hypot downward binary64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok
+= hypot tonearest binary64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero binary64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok
+= hypot upward binary64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot downward intel96 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb8p+1024 : no-test-inline inexact-ok
+= hypot tonearest intel96 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb8p+1024 : no-test-inline inexact-ok
+= hypot towardzero intel96 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb8p+1024 : no-test-inline inexact-ok
+= hypot upward intel96 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdbap+1024 : no-test-inline inexact-ok
+= hypot downward m68k96 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb8p+1024 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb8p+1024 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb8p+1024 : no-test-inline inexact-ok
+= hypot upward m68k96 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdbap+1024 : no-test-inline inexact-ok
+= hypot downward binary128 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb863c7d3c9044dp+1024 : no-test-inline inexact-ok
+= hypot tonearest binary128 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb863c7d3c9044dp+1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb863c7d3c9044dp+1024 : no-test-inline inexact-ok
+= hypot upward binary128 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb863c7d3c9044ep+1024 : no-test-inline inexact-ok
+= hypot downward ibm128 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot tonearest ibm128 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero ibm128 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot upward ibm128 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange
+= hypot downward intel96 0xf.ffffffffffff8p+1020 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot tonearest intel96 0xf.ffffffffffff8p+1020 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot towardzero intel96 0xf.ffffffffffff8p+1020 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot upward intel96 0xf.ffffffffffff8p+1020 0x8p+16380 : 0x8.000000000000001p+16380 : no-test-inline inexact-ok
+= hypot downward m68k96 0xf.ffffffffffff8p+1020 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0xf.ffffffffffff8p+1020 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0xf.ffffffffffff8p+1020 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot upward m68k96 0xf.ffffffffffff8p+1020 0x8p+16380 : 0x8.000000000000001p+16380 : no-test-inline inexact-ok
+= hypot downward binary128 0xf.ffffffffffff8p+1020 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot tonearest binary128 0xf.ffffffffffff8p+1020 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.ffffffffffff8p+1020 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot upward binary128 0xf.ffffffffffff8p+1020 0x8p+16380 : 0x8.0000000000000000000000000008p+16380 : no-test-inline inexact-ok
+= hypot downward binary128 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0x1.6a09e667f3bcc08c7794a3b07db4p+1024 : no-test-inline inexact-ok
+= hypot tonearest binary128 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0x1.6a09e667f3bcc08c7794a3b07db5p+1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0x1.6a09e667f3bcc08c7794a3b07db4p+1024 : no-test-inline inexact-ok
+= hypot upward binary128 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0x1.6a09e667f3bcc08c7794a3b07db5p+1024 : no-test-inline inexact-ok
+= hypot downward ibm128 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot tonearest ibm128 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero ibm128 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot upward ibm128 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange
+= hypot downward intel96 0x6p+16380 0xf.fffffp+124 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x6p+16380 0xf.fffffp+124 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x6p+16380 0xf.fffffp+124 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot upward intel96 0x6p+16380 0xf.fffffp+124 : 0x6.0000000000000008p+16380 : no-test-inline inexact-ok
+= hypot downward m68k96 0x6p+16380 0xf.fffffp+124 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x6p+16380 0xf.fffffp+124 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x6p+16380 0xf.fffffp+124 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot upward m68k96 0x6p+16380 0xf.fffffp+124 : 0x6.0000000000000008p+16380 : no-test-inline inexact-ok
+= hypot downward binary128 0x6p+16380 0xf.fffffp+124 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x6p+16380 0xf.fffffp+124 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x6p+16380 0xf.fffffp+124 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot upward binary128 0x6p+16380 0xf.fffffp+124 : 0x6.0000000000000000000000000004p+16380 : no-test-inline inexact-ok
+= hypot downward intel96 0x6p+16380 0xf.ffffffffffff8p+1020 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x6p+16380 0xf.ffffffffffff8p+1020 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x6p+16380 0xf.ffffffffffff8p+1020 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot upward intel96 0x6p+16380 0xf.ffffffffffff8p+1020 : 0x6.0000000000000008p+16380 : no-test-inline inexact-ok
+= hypot downward m68k96 0x6p+16380 0xf.ffffffffffff8p+1020 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x6p+16380 0xf.ffffffffffff8p+1020 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x6p+16380 0xf.ffffffffffff8p+1020 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot upward m68k96 0x6p+16380 0xf.ffffffffffff8p+1020 : 0x6.0000000000000008p+16380 : no-test-inline inexact-ok
+= hypot downward binary128 0x6p+16380 0xf.ffffffffffff8p+1020 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x6p+16380 0xf.ffffffffffff8p+1020 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x6p+16380 0xf.ffffffffffff8p+1020 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot upward binary128 0x6p+16380 0xf.ffffffffffff8p+1020 : 0x6.0000000000000000000000000004p+16380 : no-test-inline inexact-ok
+= hypot downward intel96 0x6p+16380 0x8p+16380 : 0xap+16380 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x6p+16380 0x8p+16380 : 0xap+16380 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x6p+16380 0x8p+16380 : 0xap+16380 : no-test-inline inexact-ok
+= hypot upward intel96 0x6p+16380 0x8p+16380 : 0xap+16380 : no-test-inline inexact-ok
+= hypot downward m68k96 0x6p+16380 0x8p+16380 : 0xap+16380 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x6p+16380 0x8p+16380 : 0xap+16380 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x6p+16380 0x8p+16380 : 0xap+16380 : no-test-inline inexact-ok
+= hypot upward m68k96 0x6p+16380 0x8p+16380 : 0xap+16380 : no-test-inline inexact-ok
+= hypot downward binary128 0x6p+16380 0x8p+16380 : 0xap+16380 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x6p+16380 0x8p+16380 : 0xap+16380 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x6p+16380 0x8p+16380 : 0xap+16380 : no-test-inline inexact-ok
+= hypot upward binary128 0x6p+16380 0x8p+16380 : 0xap+16380 : no-test-inline inexact-ok
+= hypot downward binary128 0x6p+16380 0xf.ffffffffffffbffffffffffffcp+1020 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x6p+16380 0xf.ffffffffffffbffffffffffffcp+1020 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x6p+16380 0xf.ffffffffffffbffffffffffffcp+1020 : 0x6p+16380 : no-test-inline inexact-ok
+= hypot upward binary128 0x6p+16380 0xf.ffffffffffffbffffffffffffcp+1020 : 0x6.0000000000000000000000000004p+16380 : no-test-inline inexact-ok
+= hypot downward binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline inexact-ok
+= hypot tonearest binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline inexact-ok
+= hypot upward binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 : 0xf.ffffffffffffbffffffffffffc08p+1020 : no-test-inline inexact-ok
+= hypot downward ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline inexact-ok
+= hypot upward ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 : plus_infty : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange
+= hypot downward binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcc08c7794a3b07db4p+1024 : no-test-inline inexact-ok
+= hypot tonearest binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcc08c7794a3b07db5p+1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcc08c7794a3b07db4p+1024 : no-test-inline inexact-ok
+= hypot upward binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcc08c7794a3b07db5p+1024 : no-test-inline inexact-ok
+= hypot downward ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot tonearest ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot upward ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange
+= hypot downward binary128 0xf.ffffffffffffbffffffffffffcp+1020 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot tonearest binary128 0xf.ffffffffffffbffffffffffffcp+1020 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.ffffffffffffbffffffffffffcp+1020 0x8p+16380 : 0x8p+16380 : no-test-inline inexact-ok
+= hypot upward binary128 0xf.ffffffffffffbffffffffffffcp+1020 0x8p+16380 : 0x8.0000000000000000000000000008p+16380 : no-test-inline inexact-ok
+= hypot downward binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0x1.6a09e667f3bcc3608b617397f716p+1024 : no-test-inline inexact-ok
+= hypot tonearest binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0x1.6a09e667f3bcc3608b617397f717p+1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0x1.6a09e667f3bcc3608b617397f716p+1024 : no-test-inline inexact-ok
+= hypot upward binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0x1.6a09e667f3bcc3608b617397f717p+1024 : no-test-inline inexact-ok
+= hypot downward ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot tonearest ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot upward ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange
+hypot 0x1p-149 0x1p-149
+= hypot downward binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot upward binary32 0x8p-152 0x8p-152 : 0x1p-148 : inexact-ok underflow errno-erange-ok
+= hypot downward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754bp-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3758p-152 : inexact-ok
+hypot 0x1p-1074 0x1p-1074
+= hypot downward binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot upward binary32 0x8p-152 0x8p-152 : 0x1p-148 : inexact-ok underflow errno-erange-ok
+= hypot downward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754bp-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3758p-152 : inexact-ok
+= hypot downward binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward binary64 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x4p-1076 : 0x8.0000000000008p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-1076 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x4p-1076 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot upward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot downward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot upward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x4p-1076 0x8p-152 : 0x8.0000000000008p-152 : inexact-ok
+= hypot downward intel96 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x4p-1076 0x8p-152 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x4p-1076 0x8p-152 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok
+= hypot upward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok
+= hypot downward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok
+= hypot upward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok
+= hypot downward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok
+= hypot upward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok
+= hypot downward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x4p-1076 : 0x8p-1076 : inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : inexact-ok
+= hypot upward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : inexact-ok
+= hypot downward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : inexact-ok
+= hypot upward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : inexact-ok
+= hypot downward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : inexact-ok
+= hypot upward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa58p-1076 : inexact-ok
+= hypot downward ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : inexact-ok underflow errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x4p-1076 : 0x8p-1076 : inexact-ok underflow errno-erange-ok
+hypot 0x1p-16445 0x1p-16445 no-test-inline
+= hypot downward binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary32 0x8p-152 0x8p-152 : 0x1p-148 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754bp-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3758p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x4p-1076 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-1076 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x4p-1076 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-16448 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-16448 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-16448 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-1076 0x8p-152 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x4p-1076 0x8p-152 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa58p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x8p-16448 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x8p-16448 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x8p-16448 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-16448 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-16448 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-16448 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-16448 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-16448 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-16448 0x4p-1076 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest intel96 0x8p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero intel96 0x8p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward intel96 0x8p-16448 0x8p-16448 : 0x1p-16444 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward m68k96 0x8p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest m68k96 0x8p-16448 0x8p-16448 : 0xcp-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero m68k96 0x8p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward m68k96 0x8p-16448 0x8p-16448 : 0xcp-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x8p-16448 0x8p-16448 : 0xb.504f333f9de4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x8p-16448 0x8p-16448 : 0xb.504f333f9de8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x8p-16448 0x8p-16448 : 0xb.504f333f9de4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x8p-16448 0x8p-16448 : 0xb.504f333f9de8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+hypot 0x1p-16494 0x1p-16494 no-test-inline
+= hypot downward binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary32 0x8p-152 0x8p-152 : 0x1p-148 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754bp-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3758p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x4p-1076 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-1076 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x4p-1076 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-16448 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-16448 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-16448 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x4p-16448 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-16448 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-16496 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-16496 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-16496 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-16496 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-1076 0x8p-152 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x4p-1076 0x8p-152 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa58p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x8p-16448 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x8p-16448 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x8p-16448 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x4p-16448 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x4p-16448 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x4p-16496 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x4p-16496 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x4p-16496 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x4p-16496 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-16448 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-16448 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-16448 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-16448 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-16448 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-16448 0x4p-1076 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest intel96 0x8p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero intel96 0x8p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward intel96 0x8p-16448 0x8p-16448 : 0x1p-16444 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward m68k96 0x8p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest m68k96 0x8p-16448 0x8p-16448 : 0xcp-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero m68k96 0x8p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward m68k96 0x8p-16448 0x8p-16448 : 0xcp-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x8p-16448 0x8p-16448 : 0xb.504f333f9de4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x8p-16448 0x8p-16448 : 0xb.504f333f9de8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x8p-16448 0x8p-16448 : 0xb.504f333f9de4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x8p-16448 0x8p-16448 : 0xb.504f333f9de8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward m68k96 0x8p-16448 0x4p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest m68k96 0x8p-16448 0x4p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero m68k96 0x8p-16448 0x4p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward m68k96 0x8p-16448 0x4p-16448 : 0xcp-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x8p-16448 0x4p-16448 : 0x8.f1bbcdcbfa5p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x8p-16448 0x4p-16448 : 0x8.f1bbcdcbfa54p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x8p-16448 0x4p-16448 : 0x8.f1bbcdcbfa5p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x8p-16448 0x4p-16448 : 0x8.f1bbcdcbfa54p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x8p-16448 0x4p-16496 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x8p-16448 0x4p-16496 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x8p-16448 0x4p-16496 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x8p-16448 0x4p-16496 : 0x8.000000000004p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward m68k96 0x4p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-16448 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-16448 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x4p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-16448 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-16448 0x4p-1076 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest m68k96 0x4p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero m68k96 0x4p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward m68k96 0x4p-16448 0x8p-16448 : 0xcp-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x4p-16448 0x8p-16448 : 0x8.f1bbcdcbfa5p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x4p-16448 0x8p-16448 : 0x8.f1bbcdcbfa54p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x4p-16448 0x8p-16448 : 0x8.f1bbcdcbfa5p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x4p-16448 0x8p-16448 : 0x8.f1bbcdcbfa54p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward m68k96 0x4p-16448 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest m68k96 0x4p-16448 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero m68k96 0x4p-16448 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward m68k96 0x4p-16448 0x4p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x4p-16448 0x4p-16448 : 0x5.a827999fcefp-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x4p-16448 0x4p-16448 : 0x5.a827999fcef4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x4p-16448 0x4p-16448 : 0x5.a827999fcefp-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x4p-16448 0x4p-16448 : 0x5.a827999fcef4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x4p-16448 0x4p-16496 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x4p-16448 0x4p-16496 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x4p-16448 0x4p-16496 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x4p-16448 0x4p-16496 : 0x4.000000000004p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x4p-16496 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-16496 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-16496 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-16496 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16496 0x0p+0 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x4p-16496 0x0p+0 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x4p-16496 0x0p+0 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x4p-16496 0x0p+0 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x4p-16496 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-16496 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-16496 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-16496 0x4p-1076 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16496 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x4p-16496 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x4p-16496 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x4p-16496 0x8p-16448 : 0x8.000000000004p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x4p-16496 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x4p-16496 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x4p-16496 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x4p-16496 0x4p-16448 : 0x4.000000000004p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x4p-16496 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x4p-16496 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x4p-16496 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x4p-16496 0x4p-16496 : 0x8p-16496 : no-test-inline inexact-ok underflow errno-erange-ok
+hypot 0x0.fffffep-126 0x0.fp-127
+= hypot downward binary32 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08p-128 : inexact-ok
+= hypot tonearest binary32 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08p-128 : inexact-ok
+= hypot towardzero binary32 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08p-128 : inexact-ok
+= hypot upward binary32 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb1p-128 : inexact-ok
+= hypot downward binary64 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccfp-128 : inexact-ok
+= hypot tonearest binary64 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf4p-128 : inexact-ok
+= hypot towardzero binary64 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccfp-128 : inexact-ok
+= hypot upward binary64 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf4p-128 : inexact-ok
+= hypot downward intel96 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf217p-128 : inexact-ok
+= hypot tonearest intel96 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf217p-128 : inexact-ok
+= hypot towardzero intel96 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf217p-128 : inexact-ok
+= hypot upward intel96 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf2178p-128 : inexact-ok
+= hypot downward m68k96 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf217p-128 : inexact-ok
+= hypot tonearest m68k96 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf217p-128 : inexact-ok
+= hypot towardzero m68k96 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf217p-128 : inexact-ok
+= hypot upward m68k96 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf2178p-128 : inexact-ok
+= hypot downward binary128 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf217216526aee20ap-128 : inexact-ok
+= hypot tonearest binary128 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf217216526aee20ap-128 : inexact-ok
+= hypot towardzero binary128 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf217216526aee20ap-128 : inexact-ok
+= hypot upward binary128 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf217216526aee20a4p-128 : inexact-ok
+= hypot downward ibm128 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf217216526aee2p-128 : inexact-ok
+= hypot tonearest ibm128 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf217216526aee2p-128 : inexact-ok
+= hypot towardzero ibm128 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf217216526aee2p-128 : inexact-ok
+= hypot upward ibm128 0x3.fffff8p-128 0x1.ep-128 : 0x4.6aeb08a21ccf217216526aee22p-128 : inexact-ok
+hypot 0x0.fffffep-126 0x0.fp-130
+= hypot downward binary32 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c19p-128 : inexact-ok
+= hypot tonearest binary32 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c198p-128 : inexact-ok
+= hypot towardzero binary32 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c19p-128 : inexact-ok
+= hypot upward binary32 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c198p-128 : inexact-ok
+= hypot downward binary64 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88cp-128 : inexact-ok
+= hypot tonearest binary64 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d89p-128 : inexact-ok
+= hypot towardzero binary64 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88cp-128 : inexact-ok
+= hypot upward binary64 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d89p-128 : inexact-ok
+= hypot downward intel96 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88f29p-128 : inexact-ok
+= hypot tonearest intel96 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88f298p-128 : inexact-ok
+= hypot towardzero intel96 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88f29p-128 : inexact-ok
+= hypot upward intel96 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88f298p-128 : inexact-ok
+= hypot downward m68k96 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88f29p-128 : inexact-ok
+= hypot tonearest m68k96 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88f298p-128 : inexact-ok
+= hypot towardzero m68k96 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88f29p-128 : inexact-ok
+= hypot upward m68k96 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88f298p-128 : inexact-ok
+= hypot downward binary128 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88f297cf6ea10e1d34p-128 : inexact-ok
+= hypot tonearest binary128 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88f297cf6ea10e1d38p-128 : inexact-ok
+= hypot towardzero binary128 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88f297cf6ea10e1d34p-128 : inexact-ok
+= hypot upward binary128 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88f297cf6ea10e1d38p-128 : inexact-ok
+= hypot downward ibm128 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88f297cf6ea10e1cp-128 : inexact-ok
+= hypot tonearest ibm128 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88f297cf6ea10e1ep-128 : inexact-ok
+= hypot towardzero ibm128 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88f297cf6ea10e1cp-128 : inexact-ok
+= hypot upward ibm128 0x3.fffff8p-128 0x3.cp-132 : 0x4.01c1954e5d88f297cf6ea10e1ep-128 : inexact-ok
+hypot 0x0.fffffffffffffp-1022 0x0.fp-1023
+= hypot downward binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot upward binary32 0x8p-152 0x8p-152 : 0x1p-148 : inexact-ok underflow errno-erange-ok
+= hypot downward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754bp-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3758p-152 : inexact-ok
+= hypot downward binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward binary64 0x8p-152 0x1.ep-1024 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x1.ep-1024 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x1.ep-1024 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x1.ep-1024 : 0x8.0000000000008p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x1.ep-1024 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x1.ep-1024 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x1.ep-1024 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x1.ep-1024 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x1.ep-1024 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x1.ep-1024 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x1.ep-1024 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x1.ep-1024 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x1.ep-1024 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x1.ep-1024 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x1.ep-1024 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x1.ep-1024 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x1.ep-1024 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x1.ep-1024 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x1.ep-1024 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x1.ep-1024 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary64 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok
+= hypot upward intel96 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok
+= hypot downward binary128 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok
+= hypot upward binary128 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 0x1.ep-1024 : 0x1.ep-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8.0000000000008p-152 : inexact-ok
+= hypot downward intel96 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward binary64 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot tonearest intel96 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot towardzero intel96 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot upward intel96 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot downward m68k96 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot tonearest m68k96 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot towardzero m68k96 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot upward m68k96 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot downward binary128 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot tonearest binary128 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot towardzero binary128 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot upward binary128 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot downward ibm128 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ecp-1024 : inexact-ok
+= hypot tonearest binary64 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ecp-1024 : inexact-ok
+= hypot towardzero binary64 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ecp-1024 : inexact-ok
+= hypot upward binary64 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0fp-1024 : inexact-ok
+= hypot downward intel96 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ec7fp-1024 : inexact-ok
+= hypot tonearest intel96 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ec7f8p-1024 : inexact-ok
+= hypot towardzero intel96 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ec7fp-1024 : inexact-ok
+= hypot upward intel96 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ec7f8p-1024 : inexact-ok
+= hypot downward m68k96 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ec7fp-1024 : inexact-ok
+= hypot tonearest m68k96 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ec7f8p-1024 : inexact-ok
+= hypot towardzero m68k96 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ec7fp-1024 : inexact-ok
+= hypot upward m68k96 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ec7f8p-1024 : inexact-ok
+= hypot downward binary128 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ec7f47b71873394ep-1024 : inexact-ok
+= hypot tonearest binary128 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ec7f47b71873394ep-1024 : inexact-ok
+= hypot towardzero binary128 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ec7f47b71873394ep-1024 : inexact-ok
+= hypot upward binary128 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ec7f47b71873394e4p-1024 : inexact-ok
+= hypot downward ibm128 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ecp-1024 : inexact-ok underflow errno-erange-ok
+= hypot tonearest ibm128 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ecp-1024 : inexact-ok underflow errno-erange-ok
+= hypot towardzero ibm128 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0ecp-1024 : inexact-ok underflow errno-erange-ok
+= hypot upward ibm128 0x3.ffffffffffffcp-1024 0x1.ep-1024 : 0x4.6aeb0fe07e0fp-1024 : inexact-ok underflow errno-erange-ok
+hypot 0x0.fffffffffffffp-1022 0x0.fp-1026
+= hypot downward binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot upward binary32 0x8p-152 0x8p-152 : 0x1p-148 : inexact-ok underflow errno-erange-ok
+= hypot downward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754bp-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3758p-152 : inexact-ok
+= hypot downward binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward binary64 0x8p-152 0x3.cp-1028 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x3.cp-1028 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x3.cp-1028 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x3.cp-1028 : 0x8.0000000000008p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x3.cp-1028 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x3.cp-1028 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x3.cp-1028 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x3.cp-1028 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x3.cp-1028 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x3.cp-1028 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x3.cp-1028 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x3.cp-1028 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x3.cp-1028 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x3.cp-1028 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x3.cp-1028 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x3.cp-1028 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x3.cp-1028 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x3.cp-1028 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x3.cp-1028 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x3.cp-1028 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary64 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok
+= hypot upward intel96 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok
+= hypot downward binary128 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok
+= hypot upward binary128 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 0x3.cp-1028 : 0x3.cp-1028 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8.0000000000008p-152 : inexact-ok
+= hypot downward intel96 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x3.ffffffffffffcp-1024 0x8p-152 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward binary64 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot tonearest intel96 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot towardzero intel96 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot upward intel96 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot downward m68k96 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot tonearest m68k96 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot towardzero m68k96 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot upward m68k96 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot downward binary128 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot tonearest binary128 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot towardzero binary128 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot upward binary128 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok
+= hypot downward ibm128 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x3.ffffffffffffcp-1024 0x0p+0 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd8p-1024 : inexact-ok
+= hypot tonearest binary64 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd84p-1024 : inexact-ok
+= hypot towardzero binary64 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd8p-1024 : inexact-ok
+= hypot upward binary64 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd84p-1024 : inexact-ok
+= hypot downward intel96 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd83d78p-1024 : inexact-ok
+= hypot tonearest intel96 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd83d8p-1024 : inexact-ok
+= hypot towardzero intel96 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd83d78p-1024 : inexact-ok
+= hypot upward intel96 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd83d8p-1024 : inexact-ok
+= hypot downward m68k96 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd83d78p-1024 : inexact-ok
+= hypot tonearest m68k96 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd83d8p-1024 : inexact-ok
+= hypot towardzero m68k96 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd83d78p-1024 : inexact-ok
+= hypot upward m68k96 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd83d8p-1024 : inexact-ok
+= hypot downward binary128 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd83d7da77fe2ae4ce4p-1024 : inexact-ok
+= hypot tonearest binary128 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd83d7da77fe2ae4ce8p-1024 : inexact-ok
+= hypot towardzero binary128 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd83d7da77fe2ae4ce4p-1024 : inexact-ok
+= hypot upward binary128 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd83d7da77fe2ae4ce8p-1024 : inexact-ok
+= hypot downward ibm128 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd8p-1024 : inexact-ok underflow errno-erange-ok
+= hypot tonearest ibm128 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd84p-1024 : inexact-ok underflow errno-erange-ok
+= hypot towardzero ibm128 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd8p-1024 : inexact-ok underflow errno-erange-ok
+= hypot upward ibm128 0x3.ffffffffffffcp-1024 0x3.cp-1028 : 0x4.01c19d4adbd84p-1024 : inexact-ok underflow errno-erange-ok
+hypot 0x0.ffffffp-16382 0x0.fp-16383 no-test-inline
+= hypot downward binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary32 0x8p-152 0x8p-152 : 0x1p-148 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754bp-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3758p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x4p-1076 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-1076 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x4p-1076 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x1.ep-16384 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x1.ep-16384 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x1.ep-16384 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x1.ep-16384 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x1.ep-16384 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x1.ep-16384 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x1.ep-16384 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x1.ep-16384 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x1.ep-16384 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x1.ep-16384 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x1.ep-16384 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x1.ep-16384 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x1.ep-16384 : 0x1.ep-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x0p+0 0x1.ep-16384 : 0x1.ep-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x0p+0 0x1.ep-16384 : 0x1.ep-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x0p+0 0x1.ep-16384 : 0x1.ep-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 0x1.ep-16384 : 0x1.ep-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x0p+0 0x1.ep-16384 : 0x1.ep-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x0p+0 0x1.ep-16384 : 0x1.ep-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x0p+0 0x1.ep-16384 : 0x1.ep-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 0x1.ep-16384 : 0x1.ep-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 0x1.ep-16384 : 0x1.ep-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 0x1.ep-16384 : 0x1.ep-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 0x1.ep-16384 : 0x1.ep-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-1076 0x8p-152 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x4p-1076 0x8p-152 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa58p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x1.ep-16384 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x1.ep-16384 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x1.ep-16384 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x1.ep-16384 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x1.ep-16384 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x1.ep-16384 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x1.ep-16384 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x1.ep-16384 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x1.ep-16384 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x1.ep-16384 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x1.ep-16384 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x1.ep-16384 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x3.fffffcp-16384 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x3.fffffcp-16384 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x3.fffffcp-16384 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok
+= hypot upward m68k96 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok
+= hypot downward binary128 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x3.fffffcp-16384 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x3.fffffcp-16384 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x3.fffffcp-16384 0x4p-1076 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x3.fffffcp-16384 0x1.ep-16384 : 0x4.6aeb0c414d6ebe28p-16384 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x3.fffffcp-16384 0x1.ep-16384 : 0x4.6aeb0c414d6ebe28p-16384 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x3.fffffcp-16384 0x1.ep-16384 : 0x4.6aeb0c414d6ebe28p-16384 : no-test-inline inexact-ok
+= hypot upward intel96 0x3.fffffcp-16384 0x1.ep-16384 : 0x4.6aeb0c414d6ebe3p-16384 : no-test-inline inexact-ok
+= hypot downward m68k96 0x3.fffffcp-16384 0x1.ep-16384 : 0x4.6aeb0c414d6ebe28p-16384 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x3.fffffcp-16384 0x1.ep-16384 : 0x4.6aeb0c414d6ebe28p-16384 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x3.fffffcp-16384 0x1.ep-16384 : 0x4.6aeb0c414d6ebe28p-16384 : no-test-inline inexact-ok
+= hypot upward m68k96 0x3.fffffcp-16384 0x1.ep-16384 : 0x4.6aeb0c414d6ebe3p-16384 : no-test-inline inexact-ok
+= hypot downward binary128 0x3.fffffcp-16384 0x1.ep-16384 : 0x4.6aeb0c414d6ebe293db63292cc44p-16384 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x3.fffffcp-16384 0x1.ep-16384 : 0x4.6aeb0c414d6ebe293db63292cc48p-16384 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x3.fffffcp-16384 0x1.ep-16384 : 0x4.6aeb0c414d6ebe293db63292cc44p-16384 : no-test-inline inexact-ok
+= hypot upward binary128 0x3.fffffcp-16384 0x1.ep-16384 : 0x4.6aeb0c414d6ebe293db63292cc48p-16384 : no-test-inline inexact-ok
+hypot 0x0.ffffffp-16382 0x0.fp-16386 no-test-inline
+= hypot downward binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary32 0x8p-152 0x8p-152 : 0x1p-148 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754bp-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3758p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x4p-1076 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-1076 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x4p-1076 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x3.cp-16388 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x3.cp-16388 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x3.cp-16388 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x3.cp-16388 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x3.cp-16388 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x3.cp-16388 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x3.cp-16388 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x3.cp-16388 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x3.cp-16388 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x3.cp-16388 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x3.cp-16388 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x3.cp-16388 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x3.cp-16388 : 0x3.cp-16388 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x0p+0 0x3.cp-16388 : 0x3.cp-16388 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x0p+0 0x3.cp-16388 : 0x3.cp-16388 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x0p+0 0x3.cp-16388 : 0x3.cp-16388 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 0x3.cp-16388 : 0x3.cp-16388 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x0p+0 0x3.cp-16388 : 0x3.cp-16388 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x0p+0 0x3.cp-16388 : 0x3.cp-16388 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x0p+0 0x3.cp-16388 : 0x3.cp-16388 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 0x3.cp-16388 : 0x3.cp-16388 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 0x3.cp-16388 : 0x3.cp-16388 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 0x3.cp-16388 : 0x3.cp-16388 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 0x3.cp-16388 : 0x3.cp-16388 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-1076 0x8p-152 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x4p-1076 0x8p-152 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa58p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x3.cp-16388 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x3.cp-16388 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x3.cp-16388 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x3.cp-16388 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x3.cp-16388 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x3.cp-16388 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x3.cp-16388 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x3.cp-16388 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x3.cp-16388 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x3.cp-16388 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x3.cp-16388 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x3.cp-16388 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x3.fffffcp-16384 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x3.fffffcp-16384 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x3.fffffcp-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x3.fffffcp-16384 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok
+= hypot upward m68k96 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok
+= hypot downward binary128 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x3.fffffcp-16384 0x0p+0 : 0x3.fffffcp-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x3.fffffcp-16384 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x3.fffffcp-16384 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x3.fffffcp-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x3.fffffcp-16384 0x4p-1076 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x3.fffffcp-16384 0x3.cp-16388 : 0x4.01c1994c9cb0b638p-16384 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x3.fffffcp-16384 0x3.cp-16388 : 0x4.01c1994c9cb0b64p-16384 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x3.fffffcp-16384 0x3.cp-16388 : 0x4.01c1994c9cb0b638p-16384 : no-test-inline inexact-ok
+= hypot upward intel96 0x3.fffffcp-16384 0x3.cp-16388 : 0x4.01c1994c9cb0b64p-16384 : no-test-inline inexact-ok
+= hypot downward m68k96 0x3.fffffcp-16384 0x3.cp-16388 : 0x4.01c1994c9cb0b638p-16384 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x3.fffffcp-16384 0x3.cp-16388 : 0x4.01c1994c9cb0b64p-16384 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x3.fffffcp-16384 0x3.cp-16388 : 0x4.01c1994c9cb0b638p-16384 : no-test-inline inexact-ok
+= hypot upward m68k96 0x3.fffffcp-16384 0x3.cp-16388 : 0x4.01c1994c9cb0b64p-16384 : no-test-inline inexact-ok
+= hypot downward binary128 0x3.fffffcp-16384 0x3.cp-16388 : 0x4.01c1994c9cb0b63d036a216a4e88p-16384 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x3.fffffcp-16384 0x3.cp-16388 : 0x4.01c1994c9cb0b63d036a216a4e8cp-16384 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x3.fffffcp-16384 0x3.cp-16388 : 0x4.01c1994c9cb0b63d036a216a4e88p-16384 : no-test-inline inexact-ok
+= hypot upward binary128 0x3.fffffcp-16384 0x3.cp-16388 : 0x4.01c1994c9cb0b63d036a216a4e8cp-16384 : no-test-inline inexact-ok
+hypot 0 min no-test-inline
+= hypot downward binary32 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x0p+0 0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x0p+0 0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x0p+0 0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x0p+0 0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x0p+0 0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x0p+0 0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x0p+0 0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x0p+0 0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x0p+0 0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+hypot 0 min_subnorm no-test-inline
+= hypot downward binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+hypot 0 -min no-test-inline
+= hypot downward binary32 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 -0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 -0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 -0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x0p+0 -0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x0p+0 -0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x0p+0 -0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 -0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 -0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 -0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 -0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 -0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 -0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 -0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 -0x4p-16384 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 -0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x0p+0 -0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x0p+0 -0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x0p+0 -0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 -0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x0p+0 -0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x0p+0 -0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x0p+0 -0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 -0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 -0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 -0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 -0x2p-16384 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 -0x8p-972 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+hypot 0 -min_subnorm no-test-inline
+= hypot downward binary32 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 -0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 -0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 -0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x0p+0 -0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x0p+0 -0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x0p+0 -0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 -0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x0p+0 -0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x0p+0 -0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x0p+0 -0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 -0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 -0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 -0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 -0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 -0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x0p+0 -0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x0p+0 -0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x0p+0 -0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 -0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 -0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 -0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 -0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 -0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 -0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 -0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 -0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+hypot min 0 no-test-inline
+= hypot downward binary32 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward ibm128 0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+hypot min_subnorm 0 no-test-inline
+= hypot downward binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x4p-16496 0x0p+0 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x4p-16496 0x0p+0 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x4p-16496 0x0p+0 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x4p-16496 0x0p+0 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+hypot -min 0 no-test-inline
+= hypot downward binary32 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary64 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary64 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary64 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward intel96 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest intel96 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero intel96 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward intel96 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward m68k96 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward m68k96 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward binary128 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary128 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward ibm128 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest ibm128 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero ibm128 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward ibm128 -0x4p-128 0x0p+0 : 0x4p-128 : no-test-inline inexact-ok
+= hypot downward binary64 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest intel96 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero intel96 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward intel96 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot downward m68k96 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest m68k96 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero m68k96 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward m68k96 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot downward binary128 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest binary128 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward binary128 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot downward ibm128 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 -0x4p-1024 0x0p+0 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 -0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 -0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 -0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 -0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 -0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot tonearest m68k96 -0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot towardzero m68k96 -0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot upward m68k96 -0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot downward binary128 -0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 -0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 -0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 -0x4p-16384 0x0p+0 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 -0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 -0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 -0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 -0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 -0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 -0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 -0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 -0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 -0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 -0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 -0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 -0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary64 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary64 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary64 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot downward intel96 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest intel96 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero intel96 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward intel96 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot downward m68k96 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest m68k96 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero m68k96 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward m68k96 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot downward binary128 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary128 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary128 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary128 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok
+= hypot downward ibm128 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 -0x8p-972 0x0p+0 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+hypot -min_subnorm 0 no-test-inline
+= hypot downward binary32 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 -0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary64 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 -0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 -0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 -0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 -0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 -0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 -0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 -0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 -0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 -0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 -0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 -0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 -0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 -0x8p-16448 0x0p+0 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 -0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 -0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 -0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 -0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 -0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 -0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 -0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 -0x4p-16448 0x0p+0 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 -0x4p-16496 0x0p+0 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 -0x4p-16496 0x0p+0 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 -0x4p-16496 0x0p+0 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 -0x4p-16496 0x0p+0 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+hypot min min no-test-inline
+= hypot downward binary32 0x4p-128 0x4p-128 : 0x5.a82798p-128 : no-test-inline inexact-ok
+= hypot tonearest binary32 0x4p-128 0x4p-128 : 0x5.a82798p-128 : no-test-inline inexact-ok
+= hypot towardzero binary32 0x4p-128 0x4p-128 : 0x5.a82798p-128 : no-test-inline inexact-ok
+= hypot upward binary32 0x4p-128 0x4p-128 : 0x5.a827ap-128 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-128 0x4p-128 : 0x5.a827999fcef3p-128 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-128 0x4p-128 : 0x5.a827999fcef34p-128 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-128 0x4p-128 : 0x5.a827999fcef3p-128 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-128 0x4p-128 : 0x5.a827999fcef34p-128 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-128 0x4p-128 : 0x5.a827999fcef3242p-128 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-128 0x4p-128 : 0x5.a827999fcef3242p-128 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-128 0x4p-128 : 0x5.a827999fcef3242p-128 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-128 0x4p-128 : 0x5.a827999fcef32428p-128 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-128 0x4p-128 : 0x5.a827999fcef3242p-128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-128 0x4p-128 : 0x5.a827999fcef3242p-128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-128 0x4p-128 : 0x5.a827999fcef3242p-128 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-128 0x4p-128 : 0x5.a827999fcef32428p-128 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-128 0x4p-128 : 0x5.a827999fcef32422cbec4d9baa54p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-128 0x4p-128 : 0x5.a827999fcef32422cbec4d9baa54p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-128 0x4p-128 : 0x5.a827999fcef32422cbec4d9baa54p-128 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-128 0x4p-128 : 0x5.a827999fcef32422cbec4d9baa58p-128 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-128 0x4p-128 : 0x5.a827999fcef32422cbec4d9baap-128 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x4p-128 0x4p-128 : 0x5.a827999fcef32422cbec4d9baap-128 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x4p-128 0x4p-128 : 0x5.a827999fcef32422cbec4d9baap-128 : no-test-inline inexact-ok
+= hypot upward ibm128 0x4p-128 0x4p-128 : 0x5.a827999fcef32422cbec4d9bacp-128 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-128 0x4p-1024 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-128 0x4p-1024 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-128 0x4p-1024 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-128 0x4p-1024 : 0x4.0000000000004p-128 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-128 0x4p-1024 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-128 0x4p-1024 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-128 0x4p-1024 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-128 0x4p-1024 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-128 0x4p-1024 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-128 0x4p-1024 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-128 0x4p-1024 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-128 0x4p-1024 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-128 0x4p-1024 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-128 0x4p-1024 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-128 0x4p-1024 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-128 0x4p-1024 : 0x4.0000000000000000000000000004p-128 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-128 0x4p-1024 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x4p-128 0x4p-1024 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x4p-128 0x4p-1024 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward ibm128 0x4p-128 0x4p-1024 : 0x4.00000000000000000000000002p-128 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-128 0x4p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-128 0x4p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-128 0x4p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-128 0x4p-16384 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-128 0x4p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-128 0x4p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-128 0x4p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-128 0x4p-16384 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-128 0x4p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-128 0x4p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-128 0x4p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-128 0x4p-16384 : 0x4.0000000000000000000000000004p-128 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-128 0x2p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-128 0x2p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-128 0x2p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-128 0x2p-16384 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-128 0x2p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-128 0x2p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-128 0x2p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-128 0x2p-16384 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-128 0x2p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-128 0x2p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-128 0x2p-16384 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-128 0x2p-16384 : 0x4.0000000000000000000000000004p-128 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-128 0x8p-972 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-128 0x8p-972 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-128 0x8p-972 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-128 0x8p-972 : 0x4.0000000000004p-128 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-128 0x8p-972 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-128 0x8p-972 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-128 0x8p-972 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-128 0x8p-972 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-128 0x8p-972 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-128 0x8p-972 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-128 0x8p-972 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-128 0x8p-972 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-128 0x8p-972 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-128 0x8p-972 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-128 0x8p-972 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-128 0x8p-972 : 0x4.0000000000000000000000000004p-128 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-128 0x8p-972 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x4p-128 0x8p-972 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x4p-128 0x8p-972 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward ibm128 0x4p-128 0x8p-972 : 0x4.00000000000000000000000002p-128 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-1024 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-1024 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-1024 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-1024 0x4p-128 : 0x4.0000000000004p-128 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-1024 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1024 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1024 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1024 0x4p-128 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1024 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1024 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1024 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1024 0x4p-128 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1024 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1024 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1024 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1024 0x4p-128 : 0x4.0000000000000000000000000004p-128 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1024 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x4p-1024 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x4p-1024 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward ibm128 0x4p-1024 0x4p-128 : 0x4.00000000000000000000000002p-128 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-1024 0x4p-1024 : 0x5.a827999fcef3p-1024 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-1024 0x4p-1024 : 0x5.a827999fcef34p-1024 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-1024 0x4p-1024 : 0x5.a827999fcef3p-1024 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-1024 0x4p-1024 : 0x5.a827999fcef34p-1024 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-1024 0x4p-1024 : 0x5.a827999fcef3242p-1024 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1024 0x4p-1024 : 0x5.a827999fcef3242p-1024 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1024 0x4p-1024 : 0x5.a827999fcef3242p-1024 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1024 0x4p-1024 : 0x5.a827999fcef32428p-1024 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1024 0x4p-1024 : 0x5.a827999fcef3242p-1024 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1024 0x4p-1024 : 0x5.a827999fcef3242p-1024 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1024 0x4p-1024 : 0x5.a827999fcef3242p-1024 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1024 0x4p-1024 : 0x5.a827999fcef32428p-1024 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1024 0x4p-1024 : 0x5.a827999fcef32422cbec4d9baa54p-1024 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1024 0x4p-1024 : 0x5.a827999fcef32422cbec4d9baa54p-1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1024 0x4p-1024 : 0x5.a827999fcef32422cbec4d9baa54p-1024 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1024 0x4p-1024 : 0x5.a827999fcef32422cbec4d9baa58p-1024 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1024 0x4p-1024 : 0x5.a827999fcef3p-1024 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest ibm128 0x4p-1024 0x4p-1024 : 0x5.a827999fcef34p-1024 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero ibm128 0x4p-1024 0x4p-1024 : 0x5.a827999fcef3p-1024 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward ibm128 0x4p-1024 0x4p-1024 : 0x5.a827999fcef34p-1024 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1024 0x4p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1024 0x4p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1024 0x4p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1024 0x4p-16384 : 0x4.0000000000000008p-1024 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1024 0x4p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1024 0x4p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1024 0x4p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1024 0x4p-16384 : 0x4.0000000000000008p-1024 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1024 0x4p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1024 0x4p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1024 0x4p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1024 0x4p-16384 : 0x4.0000000000000000000000000004p-1024 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-1024 0x2p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1024 0x2p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1024 0x2p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1024 0x2p-16384 : 0x4.0000000000000008p-1024 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1024 0x2p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1024 0x2p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1024 0x2p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1024 0x2p-16384 : 0x4.0000000000000008p-1024 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1024 0x2p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1024 0x2p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1024 0x2p-16384 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1024 0x2p-16384 : 0x4.0000000000000000000000000004p-1024 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-1024 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-1024 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-1024 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-1024 0x8p-972 : 0x8.0000000000008p-972 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-1024 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1024 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1024 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1024 0x8p-972 : 0x8.000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1024 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1024 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1024 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1024 0x8p-972 : 0x8.000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1024 0x8p-972 : 0x8.00000000000000000000000000f8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1024 0x8p-972 : 0x8.00000000000000000000000001p-972 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1024 0x8p-972 : 0x8.00000000000000000000000000f8p-972 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1024 0x8p-972 : 0x8.00000000000000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1024 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x4p-1024 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x4p-1024 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x4p-1024 0x8p-972 : 0x8.00000000000000000000000004p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x4p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-16384 0x4p-128 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-16384 0x4p-128 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-16384 0x4p-128 : 0x4.0000000000000000000000000004p-128 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-16384 0x4p-1024 : 0x4.0000000000000008p-1024 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-16384 0x4p-1024 : 0x4.0000000000000008p-1024 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-16384 0x4p-1024 : 0x4.0000000000000000000000000004p-1024 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-16384 0x4p-16384 : 0x5.a827999fcef3242p-16384 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-16384 0x4p-16384 : 0x5.a827999fcef3242p-16384 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-16384 0x4p-16384 : 0x5.a827999fcef3242p-16384 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-16384 0x4p-16384 : 0x5.a827999fcef32428p-16384 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-16384 0x4p-16384 : 0x5.a827999fcef3242p-16384 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-16384 0x4p-16384 : 0x5.a827999fcef3242p-16384 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-16384 0x4p-16384 : 0x5.a827999fcef3242p-16384 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-16384 0x4p-16384 : 0x5.a827999fcef32428p-16384 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16384 0x4p-16384 : 0x5.a827999fcef32422cbec4d9baa54p-16384 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-16384 0x4p-16384 : 0x5.a827999fcef32422cbec4d9baa54p-16384 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-16384 0x4p-16384 : 0x5.a827999fcef32422cbec4d9baa54p-16384 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-16384 0x4p-16384 : 0x5.a827999fcef32422cbec4d9baa58p-16384 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-16384 0x2p-16384 : 0x4.78dde6e5fd29f05p-16384 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-16384 0x2p-16384 : 0x4.78dde6e5fd29f058p-16384 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-16384 0x2p-16384 : 0x4.78dde6e5fd29f05p-16384 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-16384 0x2p-16384 : 0x4.78dde6e5fd29f058p-16384 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-16384 0x2p-16384 : 0x4.78dde6e5fd29f05p-16384 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-16384 0x2p-16384 : 0x4.78dde6e5fd29f058p-16384 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-16384 0x2p-16384 : 0x4.78dde6e5fd29f05p-16384 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-16384 0x2p-16384 : 0x4.78dde6e5fd29f058p-16384 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16384 0x2p-16384 : 0x4.78dde6e5fd29f057ce73018173b4p-16384 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-16384 0x2p-16384 : 0x4.78dde6e5fd29f057ce73018173b8p-16384 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-16384 0x2p-16384 : 0x4.78dde6e5fd29f057ce73018173b4p-16384 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-16384 0x2p-16384 : 0x4.78dde6e5fd29f057ce73018173b8p-16384 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-16384 0x8p-972 : 0x8.000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-16384 0x8p-972 : 0x8.000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-16384 0x8p-972 : 0x8.0000000000000000000000000008p-972 : no-test-inline inexact-ok
+= hypot downward intel96 0x2p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x2p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x2p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward intel96 0x2p-16384 0x4p-128 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward m68k96 0x2p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x2p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x2p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward m68k96 0x2p-16384 0x4p-128 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward binary128 0x2p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x2p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x2p-16384 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary128 0x2p-16384 0x4p-128 : 0x4.0000000000000000000000000004p-128 : no-test-inline inexact-ok
+= hypot downward intel96 0x2p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x2p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x2p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward intel96 0x2p-16384 0x4p-1024 : 0x4.0000000000000008p-1024 : no-test-inline inexact-ok
+= hypot downward m68k96 0x2p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x2p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x2p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward m68k96 0x2p-16384 0x4p-1024 : 0x4.0000000000000008p-1024 : no-test-inline inexact-ok
+= hypot downward binary128 0x2p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x2p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x2p-16384 0x4p-1024 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward binary128 0x2p-16384 0x4p-1024 : 0x4.0000000000000000000000000004p-1024 : no-test-inline inexact-ok
+= hypot downward intel96 0x2p-16384 0x4p-16384 : 0x4.78dde6e5fd29f05p-16384 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x2p-16384 0x4p-16384 : 0x4.78dde6e5fd29f058p-16384 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x2p-16384 0x4p-16384 : 0x4.78dde6e5fd29f05p-16384 : no-test-inline inexact-ok
+= hypot upward intel96 0x2p-16384 0x4p-16384 : 0x4.78dde6e5fd29f058p-16384 : no-test-inline inexact-ok
+= hypot downward m68k96 0x2p-16384 0x4p-16384 : 0x4.78dde6e5fd29f05p-16384 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x2p-16384 0x4p-16384 : 0x4.78dde6e5fd29f058p-16384 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x2p-16384 0x4p-16384 : 0x4.78dde6e5fd29f05p-16384 : no-test-inline inexact-ok
+= hypot upward m68k96 0x2p-16384 0x4p-16384 : 0x4.78dde6e5fd29f058p-16384 : no-test-inline inexact-ok
+= hypot downward binary128 0x2p-16384 0x4p-16384 : 0x4.78dde6e5fd29f057ce73018173b4p-16384 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x2p-16384 0x4p-16384 : 0x4.78dde6e5fd29f057ce73018173b8p-16384 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x2p-16384 0x4p-16384 : 0x4.78dde6e5fd29f057ce73018173b4p-16384 : no-test-inline inexact-ok
+= hypot upward binary128 0x2p-16384 0x4p-16384 : 0x4.78dde6e5fd29f057ce73018173b8p-16384 : no-test-inline inexact-ok
+= hypot downward intel96 0x2p-16384 0x2p-16384 : 0x2.d413cccfe779921p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest intel96 0x2p-16384 0x2p-16384 : 0x2.d413cccfe779921p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero intel96 0x2p-16384 0x2p-16384 : 0x2.d413cccfe779921p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward intel96 0x2p-16384 0x2p-16384 : 0x2.d413cccfe7799218p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward m68k96 0x2p-16384 0x2p-16384 : 0x2.d413cccfe779921p-16384 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x2p-16384 0x2p-16384 : 0x2.d413cccfe779921p-16384 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x2p-16384 0x2p-16384 : 0x2.d413cccfe779921p-16384 : no-test-inline inexact-ok
+= hypot upward m68k96 0x2p-16384 0x2p-16384 : 0x2.d413cccfe7799214p-16384 : no-test-inline inexact-ok
+= hypot downward binary128 0x2p-16384 0x2p-16384 : 0x2.d413cccfe779921165f626cdd528p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x2p-16384 0x2p-16384 : 0x2.d413cccfe779921165f626cdd52cp-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x2p-16384 0x2p-16384 : 0x2.d413cccfe779921165f626cdd528p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x2p-16384 0x2p-16384 : 0x2.d413cccfe779921165f626cdd52cp-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x2p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x2p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x2p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward intel96 0x2p-16384 0x8p-972 : 0x8.000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward m68k96 0x2p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x2p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x2p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward m68k96 0x2p-16384 0x8p-972 : 0x8.000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward binary128 0x2p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x2p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x2p-16384 0x8p-972 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary128 0x2p-16384 0x8p-972 : 0x8.0000000000000000000000000008p-972 : no-test-inline inexact-ok
+= hypot downward binary64 0x8p-972 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-972 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-972 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-972 0x4p-128 : 0x4.0000000000004p-128 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-972 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-972 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-972 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-972 0x4p-128 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-972 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-972 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-972 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-972 0x4p-128 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-972 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-972 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-972 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-972 0x4p-128 : 0x4.0000000000000000000000000004p-128 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-972 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-972 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-972 0x4p-128 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-972 0x4p-128 : 0x4.00000000000000000000000002p-128 : no-test-inline inexact-ok
+= hypot downward binary64 0x8p-972 0x4p-1024 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-972 0x4p-1024 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-972 0x4p-1024 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-972 0x4p-1024 : 0x8.0000000000008p-972 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-972 0x4p-1024 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-972 0x4p-1024 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-972 0x4p-1024 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-972 0x4p-1024 : 0x8.000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-972 0x4p-1024 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-972 0x4p-1024 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-972 0x4p-1024 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-972 0x4p-1024 : 0x8.000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-972 0x4p-1024 : 0x8.00000000000000000000000000f8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-972 0x4p-1024 : 0x8.00000000000000000000000001p-972 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-972 0x4p-1024 : 0x8.00000000000000000000000000f8p-972 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-972 0x4p-1024 : 0x8.00000000000000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-972 0x4p-1024 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x8p-972 0x4p-1024 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x8p-972 0x4p-1024 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x8p-972 0x4p-1024 : 0x8.00000000000000000000000004p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x8p-972 0x4p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-972 0x4p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-972 0x4p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-972 0x4p-16384 : 0x8.000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-972 0x4p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-972 0x4p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-972 0x4p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-972 0x4p-16384 : 0x8.000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-972 0x4p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-972 0x4p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-972 0x4p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-972 0x4p-16384 : 0x8.0000000000000000000000000008p-972 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-972 0x2p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-972 0x2p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-972 0x2p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-972 0x2p-16384 : 0x8.000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-972 0x2p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-972 0x2p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-972 0x2p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-972 0x2p-16384 : 0x8.000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-972 0x2p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-972 0x2p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-972 0x2p-16384 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-972 0x2p-16384 : 0x8.0000000000000000000000000008p-972 : no-test-inline inexact-ok
+= hypot downward binary64 0x8p-972 0x8p-972 : 0xb.504f333f9de6p-972 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-972 0x8p-972 : 0xb.504f333f9de68p-972 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-972 0x8p-972 : 0xb.504f333f9de6p-972 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-972 0x8p-972 : 0xb.504f333f9de68p-972 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-972 0x8p-972 : 0xb.504f333f9de6484p-972 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-972 0x8p-972 : 0xb.504f333f9de6484p-972 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-972 0x8p-972 : 0xb.504f333f9de6484p-972 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-972 0x8p-972 : 0xb.504f333f9de6485p-972 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-972 0x8p-972 : 0xb.504f333f9de6484p-972 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-972 0x8p-972 : 0xb.504f333f9de6484p-972 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-972 0x8p-972 : 0xb.504f333f9de6484p-972 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-972 0x8p-972 : 0xb.504f333f9de6485p-972 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-972 0x8p-972 : 0xb.504f333f9de6484597d89b3754a8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-972 0x8p-972 : 0xb.504f333f9de6484597d89b3754a8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-972 0x8p-972 : 0xb.504f333f9de6484597d89b3754a8p-972 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-972 0x8p-972 : 0xb.504f333f9de6484597d89b3754bp-972 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-972 0x8p-972 : 0xb.504f333f9de6484597d89b3754p-972 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-972 0x8p-972 : 0xb.504f333f9de6484597d89b3754p-972 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-972 0x8p-972 : 0xb.504f333f9de6484597d89b3754p-972 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-972 0x8p-972 : 0xb.504f333f9de6484597d89b3758p-972 : no-test-inline inexact-ok
+hypot min_subnorm min_subnorm no-test-inline
+= hypot downward binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary32 0x8p-152 0x8p-152 : 0x1p-148 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754bp-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3758p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x4p-1076 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-1076 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x4p-1076 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-16448 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-16448 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-16448 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x4p-16448 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-16448 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-16496 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-16496 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-16496 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-16496 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-1076 0x8p-152 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x4p-1076 0x8p-152 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa58p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x8p-16448 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x8p-16448 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x8p-16448 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x4p-16448 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x4p-16448 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x4p-16496 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x4p-16496 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x4p-16496 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x4p-16496 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-16448 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-16448 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-16448 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-16448 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-16448 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-16448 0x4p-1076 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest intel96 0x8p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero intel96 0x8p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward intel96 0x8p-16448 0x8p-16448 : 0x1p-16444 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward m68k96 0x8p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest m68k96 0x8p-16448 0x8p-16448 : 0xcp-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero m68k96 0x8p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward m68k96 0x8p-16448 0x8p-16448 : 0xcp-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x8p-16448 0x8p-16448 : 0xb.504f333f9de4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x8p-16448 0x8p-16448 : 0xb.504f333f9de8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x8p-16448 0x8p-16448 : 0xb.504f333f9de4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x8p-16448 0x8p-16448 : 0xb.504f333f9de8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward m68k96 0x8p-16448 0x4p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest m68k96 0x8p-16448 0x4p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero m68k96 0x8p-16448 0x4p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward m68k96 0x8p-16448 0x4p-16448 : 0xcp-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x8p-16448 0x4p-16448 : 0x8.f1bbcdcbfa5p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x8p-16448 0x4p-16448 : 0x8.f1bbcdcbfa54p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x8p-16448 0x4p-16448 : 0x8.f1bbcdcbfa5p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x8p-16448 0x4p-16448 : 0x8.f1bbcdcbfa54p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x8p-16448 0x4p-16496 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x8p-16448 0x4p-16496 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x8p-16448 0x4p-16496 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x8p-16448 0x4p-16496 : 0x8.000000000004p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward m68k96 0x4p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-16448 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-16448 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-16448 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-16448 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-16448 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-16448 0x4p-1076 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest m68k96 0x4p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero m68k96 0x4p-16448 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward m68k96 0x4p-16448 0x8p-16448 : 0xcp-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x4p-16448 0x8p-16448 : 0x8.f1bbcdcbfa5p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x4p-16448 0x8p-16448 : 0x8.f1bbcdcbfa54p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x4p-16448 0x8p-16448 : 0x8.f1bbcdcbfa5p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x4p-16448 0x8p-16448 : 0x8.f1bbcdcbfa54p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward m68k96 0x4p-16448 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest m68k96 0x4p-16448 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero m68k96 0x4p-16448 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward m68k96 0x4p-16448 0x4p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x4p-16448 0x4p-16448 : 0x5.a827999fcefp-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x4p-16448 0x4p-16448 : 0x5.a827999fcef4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x4p-16448 0x4p-16448 : 0x5.a827999fcefp-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x4p-16448 0x4p-16448 : 0x5.a827999fcef4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x4p-16448 0x4p-16496 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x4p-16448 0x4p-16496 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x4p-16448 0x4p-16496 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x4p-16448 0x4p-16496 : 0x4.000000000004p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x4p-16496 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-16496 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-16496 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-16496 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16496 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-16496 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-16496 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-16496 0x4p-1076 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16496 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x4p-16496 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x4p-16496 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x4p-16496 0x8p-16448 : 0x8.000000000004p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x4p-16496 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x4p-16496 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x4p-16496 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x4p-16496 0x4p-16448 : 0x4.000000000004p-16448 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x4p-16496 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x4p-16496 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x4p-16496 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x4p-16496 0x4p-16496 : 0x8p-16496 : no-test-inline inexact-ok underflow errno-erange-ok
+hypot min min_subnorm no-test-inline
+= hypot downward binary32 0x4p-128 0x8p-152 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x4p-128 0x8p-152 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x4p-128 0x8p-152 : 0x4p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x4p-128 0x8p-152 : 0x4.000008p-128 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-128 0x8p-152 : 0x4.000000000007cp-128 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-128 0x8p-152 : 0x4.000000000008p-128 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-128 0x8p-152 : 0x4.000000000007cp-128 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-128 0x8p-152 : 0x4.000000000008p-128 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-128 0x8p-152 : 0x4.000000000007fff8p-128 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-128 0x8p-152 : 0x4.000000000008p-128 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-128 0x8p-152 : 0x4.000000000007fff8p-128 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-128 0x8p-152 : 0x4.000000000008p-128 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-128 0x8p-152 : 0x4.000000000007fff8p-128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-128 0x8p-152 : 0x4.000000000008p-128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-128 0x8p-152 : 0x4.000000000007fff8p-128 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-128 0x8p-152 : 0x4.000000000008p-128 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-128 0x8p-152 : 0x4.000000000007fffffffffff8p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-128 0x8p-152 : 0x4.000000000007fffffffffff8p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-128 0x8p-152 : 0x4.000000000007fffffffffff8p-128 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-128 0x8p-152 : 0x4.000000000007fffffffffff80004p-128 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-128 0x8p-152 : 0x4.000000000007fffffffffff8p-128 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x4p-128 0x8p-152 : 0x4.000000000007fffffffffff8p-128 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x4p-128 0x8p-152 : 0x4.000000000007fffffffffff8p-128 : no-test-inline inexact-ok
+= hypot upward ibm128 0x4p-128 0x8p-152 : 0x4.000000000007fffffffffff802p-128 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-128 0x4p-1076 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-128 0x4p-1076 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-128 0x4p-1076 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-128 0x4p-1076 : 0x4.0000000000004p-128 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-128 0x4p-1076 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-128 0x4p-1076 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-128 0x4p-1076 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-128 0x4p-1076 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-128 0x4p-1076 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-128 0x4p-1076 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-128 0x4p-1076 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-128 0x4p-1076 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-128 0x4p-1076 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-128 0x4p-1076 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-128 0x4p-1076 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-128 0x4p-1076 : 0x4.0000000000000000000000000004p-128 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-128 0x4p-1076 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x4p-128 0x4p-1076 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x4p-128 0x4p-1076 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward ibm128 0x4p-128 0x4p-1076 : 0x4.00000000000000000000000002p-128 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-128 0x8p-16448 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-128 0x8p-16448 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-128 0x8p-16448 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-128 0x8p-16448 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-128 0x8p-16448 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-128 0x8p-16448 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-128 0x8p-16448 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-128 0x8p-16448 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-128 0x8p-16448 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-128 0x8p-16448 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-128 0x8p-16448 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-128 0x8p-16448 : 0x4.0000000000000000000000000004p-128 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-128 0x4p-16448 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-128 0x4p-16448 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-128 0x4p-16448 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-128 0x4p-16448 : 0x4.0000000000000008p-128 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-128 0x4p-16448 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-128 0x4p-16448 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-128 0x4p-16448 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-128 0x4p-16448 : 0x4.0000000000000000000000000004p-128 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-128 0x4p-16496 : 0x4p-128 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-128 0x4p-16496 : 0x4p-128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-128 0x4p-16496 : 0x4p-128 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-128 0x4p-16496 : 0x4.0000000000000000000000000004p-128 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-1024 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-1024 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-1024 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-1024 0x8p-152 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-1024 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1024 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1024 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1024 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1024 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1024 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1024 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1024 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1024 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1024 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1024 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1024 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1024 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x4p-1024 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x4p-1024 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x4p-1024 0x8p-152 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-1024 0x4p-1076 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x4p-1024 0x4p-1076 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x4p-1024 0x4p-1076 : 0x4p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x4p-1024 0x4p-1076 : 0x4.0000000000004p-1024 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x4p-1024 0x4p-1076 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1024 0x4p-1076 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1024 0x4p-1076 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1024 0x4p-1076 : 0x4.0000000000000008p-1024 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1024 0x4p-1076 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1024 0x4p-1076 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1024 0x4p-1076 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1024 0x4p-1076 : 0x4.0000000000000008p-1024 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1024 0x4p-1076 : 0x4.00000000000000000000000001fcp-1024 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1024 0x4p-1076 : 0x4.00000000000000000000000002p-1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1024 0x4p-1076 : 0x4.00000000000000000000000001fcp-1024 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1024 0x4p-1076 : 0x4.00000000000000000000000002p-1024 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1024 0x4p-1076 : 0x4p-1024 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest ibm128 0x4p-1024 0x4p-1076 : 0x4p-1024 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero ibm128 0x4p-1024 0x4p-1076 : 0x4p-1024 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward ibm128 0x4p-1024 0x4p-1076 : 0x4.0000000000004p-1024 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1024 0x8p-16448 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1024 0x8p-16448 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1024 0x8p-16448 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1024 0x8p-16448 : 0x4.0000000000000008p-1024 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1024 0x8p-16448 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1024 0x8p-16448 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1024 0x8p-16448 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1024 0x8p-16448 : 0x4.0000000000000008p-1024 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1024 0x8p-16448 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1024 0x8p-16448 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1024 0x8p-16448 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1024 0x8p-16448 : 0x4.0000000000000000000000000004p-1024 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1024 0x4p-16448 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1024 0x4p-16448 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1024 0x4p-16448 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1024 0x4p-16448 : 0x4.0000000000000008p-1024 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1024 0x4p-16448 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1024 0x4p-16448 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1024 0x4p-16448 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1024 0x4p-16448 : 0x4.0000000000000000000000000004p-1024 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1024 0x4p-16496 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1024 0x4p-16496 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1024 0x4p-16496 : 0x4p-1024 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1024 0x4p-16496 : 0x4.0000000000000000000000000004p-1024 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-16384 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-16384 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-16384 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-16384 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-16384 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-16384 0x4p-1076 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-16384 0x8p-16448 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x4p-16384 0x8p-16448 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x4p-16384 0x8p-16448 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x4p-16384 0x8p-16448 : 0x4.0000000000000008p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x4p-16384 0x8p-16448 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-16384 0x8p-16448 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-16384 0x8p-16448 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-16384 0x8p-16448 : 0x4.0000000000000008p-16384 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16384 0x8p-16448 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x4p-16384 0x8p-16448 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x4p-16384 0x8p-16448 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x4p-16384 0x8p-16448 : 0x4.0000000000000000000000000004p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x4p-16384 0x4p-16448 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-16384 0x4p-16448 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-16384 0x4p-16448 : 0x4p-16384 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-16384 0x4p-16448 : 0x4.0000000000000008p-16384 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-16384 0x4p-16448 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x4p-16384 0x4p-16448 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x4p-16384 0x4p-16448 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x4p-16384 0x4p-16448 : 0x4.0000000000000000000000000004p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x4p-16384 0x4p-16496 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x4p-16384 0x4p-16496 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x4p-16384 0x4p-16496 : 0x4p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x4p-16384 0x4p-16496 : 0x4.0000000000000000000000000004p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x2p-16384 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x2p-16384 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x2p-16384 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x2p-16384 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x2p-16384 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x2p-16384 0x4p-1076 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest intel96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero intel96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward intel96 0x2p-16384 0x8p-16448 : 0x2.0000000000000008p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward m68k96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x2p-16384 0x8p-16448 : 0x2.0000000000000004p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x2p-16384 0x8p-16448 : 0x2.0000000000000000000000000004p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward m68k96 0x2p-16384 0x4p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x2p-16384 0x4p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x2p-16384 0x4p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x2p-16384 0x4p-16448 : 0x2.0000000000000004p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x2p-16384 0x4p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x2p-16384 0x4p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x2p-16384 0x4p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x2p-16384 0x4p-16448 : 0x2.0000000000000000000000000004p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x2p-16384 0x4p-16496 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x2p-16384 0x4p-16496 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x2p-16384 0x4p-16496 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x2p-16384 0x4p-16496 : 0x2.0000000000000000000000000004p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary64 0x8p-972 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-972 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-972 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-972 0x8p-152 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-972 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-972 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-972 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-972 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-972 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-972 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-972 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-972 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-972 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-972 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-972 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-972 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-972 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-972 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-972 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-972 0x8p-152 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x8p-972 0x4p-1076 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-972 0x4p-1076 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-972 0x4p-1076 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-972 0x4p-1076 : 0x8.0000000000008p-972 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-972 0x4p-1076 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-972 0x4p-1076 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-972 0x4p-1076 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-972 0x4p-1076 : 0x8.000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-972 0x4p-1076 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-972 0x4p-1076 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-972 0x4p-1076 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-972 0x4p-1076 : 0x8.000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-972 0x4p-1076 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-972 0x4p-1076 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-972 0x4p-1076 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-972 0x4p-1076 : 0x8.0000000000000000000000000008p-972 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-972 0x4p-1076 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x8p-972 0x4p-1076 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x8p-972 0x4p-1076 : 0x8p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x8p-972 0x4p-1076 : 0x8.00000000000000000000000004p-972 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x8p-972 0x8p-16448 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-972 0x8p-16448 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-972 0x8p-16448 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-972 0x8p-16448 : 0x8.000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-972 0x8p-16448 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-972 0x8p-16448 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-972 0x8p-16448 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-972 0x8p-16448 : 0x8.000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-972 0x8p-16448 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-972 0x8p-16448 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-972 0x8p-16448 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-972 0x8p-16448 : 0x8.0000000000000000000000000008p-972 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-972 0x4p-16448 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-972 0x4p-16448 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-972 0x4p-16448 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-972 0x4p-16448 : 0x8.000000000000001p-972 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-972 0x4p-16448 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-972 0x4p-16448 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-972 0x4p-16448 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-972 0x4p-16448 : 0x8.0000000000000000000000000008p-972 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-972 0x4p-16496 : 0x8p-972 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-972 0x4p-16496 : 0x8p-972 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-972 0x4p-16496 : 0x8p-972 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-972 0x4p-16496 : 0x8.0000000000000000000000000008p-972 : no-test-inline inexact-ok
+hypot 0x1.fp127 0x1.fp127
+= hypot downward binary32 0xf.8p+124 0xf.8p+124 : 0xf.fffffp+124 : inexact-ok overflow errno-erange-ok
+= hypot tonearest binary32 0xf.8p+124 0xf.8p+124 : plus_infty : inexact-ok overflow errno-erange
+= hypot towardzero binary32 0xf.8p+124 0xf.8p+124 : 0xf.fffffp+124 : inexact-ok overflow errno-erange-ok
+= hypot upward binary32 0xf.8p+124 0xf.8p+124 : plus_infty : inexact-ok overflow errno-erange
+= hypot downward binary64 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41eep+128 : inexact-ok
+= hypot tonearest binary64 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41eep+128 : inexact-ok
+= hypot towardzero binary64 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41eep+128 : inexact-ok
+= hypot upward binary64 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41efp+128 : inexact-ok
+= hypot downward intel96 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41ee2cp+128 : inexact-ok
+= hypot tonearest intel96 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41ee2cp+128 : inexact-ok
+= hypot towardzero intel96 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41ee2cp+128 : inexact-ok
+= hypot upward intel96 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41ee2c2p+128 : inexact-ok
+= hypot downward m68k96 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41ee2cp+128 : inexact-ok
+= hypot tonearest m68k96 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41ee2cp+128 : inexact-ok
+= hypot towardzero m68k96 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41ee2cp+128 : inexact-ok
+= hypot upward m68k96 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41ee2c2p+128 : inexact-ok
+= hypot downward binary128 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41ee2c06d633acbb34p+128 : inexact-ok
+= hypot tonearest binary128 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41ee2c06d633acbb341p+128 : inexact-ok
+= hypot towardzero binary128 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41ee2c06d633acbb34p+128 : inexact-ok
+= hypot upward binary128 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41ee2c06d633acbb341p+128 : inexact-ok
+= hypot downward ibm128 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41ee2c06d633acbb3p+128 : inexact-ok
+= hypot tonearest ibm128 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41ee2c06d633acbb38p+128 : inexact-ok
+= hypot towardzero ibm128 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41ee2c06d633acbb3p+128 : inexact-ok
+= hypot upward ibm128 0xf.8p+124 0xf.8p+124 : 0x1.5eb99734b41ee2c06d633acbb38p+128 : inexact-ok
+hypot 0x1.fp1023 0x1.fp1023
+= hypot downward binary32 0xf.fffffp+124 0xf.fffffp+124 : 0xf.fffffp+124 : inexact-ok overflow errno-erange-ok
+= hypot tonearest binary32 0xf.fffffp+124 0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= hypot towardzero binary32 0xf.fffffp+124 0xf.fffffp+124 : 0xf.fffffp+124 : inexact-ok overflow errno-erange-ok
+= hypot upward binary32 0xf.fffffp+124 0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange
+= hypot downward binary64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : inexact-ok
+= hypot tonearest binary64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : inexact-ok
+= hypot towardzero binary64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : inexact-ok
+= hypot upward binary64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d67p+128 : inexact-ok
+= hypot downward intel96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : inexact-ok
+= hypot tonearest intel96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : inexact-ok
+= hypot towardzero intel96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : inexact-ok
+= hypot upward intel96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66116p+128 : inexact-ok
+= hypot downward m68k96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : inexact-ok
+= hypot tonearest m68k96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : inexact-ok
+= hypot towardzero m68k96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : inexact-ok
+= hypot upward m68k96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66116p+128 : inexact-ok
+= hypot downward binary128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef82p+128 : inexact-ok
+= hypot tonearest binary128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef82p+128 : inexact-ok
+= hypot towardzero binary128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef82p+128 : inexact-ok
+= hypot upward binary128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef83p+128 : inexact-ok
+= hypot downward ibm128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef8p+128 : inexact-ok
+= hypot tonearest ibm128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef8p+128 : inexact-ok
+= hypot towardzero ibm128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef8p+128 : inexact-ok
+= hypot upward ibm128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3fp+128 : inexact-ok
+= hypot downward binary64 0xf.fffffp+124 0xf.8p+1020 : 0xf.8p+1020 : inexact-ok
+= hypot tonearest binary64 0xf.fffffp+124 0xf.8p+1020 : 0xf.8p+1020 : inexact-ok
+= hypot towardzero binary64 0xf.fffffp+124 0xf.8p+1020 : 0xf.8p+1020 : inexact-ok
+= hypot upward binary64 0xf.fffffp+124 0xf.8p+1020 : 0xf.8000000000008p+1020 : inexact-ok
+= hypot downward intel96 0xf.fffffp+124 0xf.8p+1020 : 0xf.8p+1020 : inexact-ok
+= hypot tonearest intel96 0xf.fffffp+124 0xf.8p+1020 : 0xf.8p+1020 : inexact-ok
+= hypot towardzero intel96 0xf.fffffp+124 0xf.8p+1020 : 0xf.8p+1020 : inexact-ok
+= hypot upward intel96 0xf.fffffp+124 0xf.8p+1020 : 0xf.800000000000001p+1020 : inexact-ok
+= hypot downward m68k96 0xf.fffffp+124 0xf.8p+1020 : 0xf.8p+1020 : inexact-ok
+= hypot tonearest m68k96 0xf.fffffp+124 0xf.8p+1020 : 0xf.8p+1020 : inexact-ok
+= hypot towardzero m68k96 0xf.fffffp+124 0xf.8p+1020 : 0xf.8p+1020 : inexact-ok
+= hypot upward m68k96 0xf.fffffp+124 0xf.8p+1020 : 0xf.800000000000001p+1020 : inexact-ok
+= hypot downward binary128 0xf.fffffp+124 0xf.8p+1020 : 0xf.8p+1020 : inexact-ok
+= hypot tonearest binary128 0xf.fffffp+124 0xf.8p+1020 : 0xf.8p+1020 : inexact-ok
+= hypot towardzero binary128 0xf.fffffp+124 0xf.8p+1020 : 0xf.8p+1020 : inexact-ok
+= hypot upward binary128 0xf.fffffp+124 0xf.8p+1020 : 0xf.8000000000000000000000000008p+1020 : inexact-ok
+= hypot downward ibm128 0xf.fffffp+124 0xf.8p+1020 : 0xf.8p+1020 : inexact-ok
+= hypot tonearest ibm128 0xf.fffffp+124 0xf.8p+1020 : 0xf.8p+1020 : inexact-ok
+= hypot towardzero ibm128 0xf.fffffp+124 0xf.8p+1020 : 0xf.8p+1020 : inexact-ok
+= hypot upward ibm128 0xf.fffffp+124 0xf.8p+1020 : 0xf.80000000000000000000000004p+1020 : inexact-ok
+= hypot downward binary64 0xf.8p+1020 0xf.fffffp+124 : 0xf.8p+1020 : inexact-ok
+= hypot tonearest binary64 0xf.8p+1020 0xf.fffffp+124 : 0xf.8p+1020 : inexact-ok
+= hypot towardzero binary64 0xf.8p+1020 0xf.fffffp+124 : 0xf.8p+1020 : inexact-ok
+= hypot upward binary64 0xf.8p+1020 0xf.fffffp+124 : 0xf.8000000000008p+1020 : inexact-ok
+= hypot downward intel96 0xf.8p+1020 0xf.fffffp+124 : 0xf.8p+1020 : inexact-ok
+= hypot tonearest intel96 0xf.8p+1020 0xf.fffffp+124 : 0xf.8p+1020 : inexact-ok
+= hypot towardzero intel96 0xf.8p+1020 0xf.fffffp+124 : 0xf.8p+1020 : inexact-ok
+= hypot upward intel96 0xf.8p+1020 0xf.fffffp+124 : 0xf.800000000000001p+1020 : inexact-ok
+= hypot downward m68k96 0xf.8p+1020 0xf.fffffp+124 : 0xf.8p+1020 : inexact-ok
+= hypot tonearest m68k96 0xf.8p+1020 0xf.fffffp+124 : 0xf.8p+1020 : inexact-ok
+= hypot towardzero m68k96 0xf.8p+1020 0xf.fffffp+124 : 0xf.8p+1020 : inexact-ok
+= hypot upward m68k96 0xf.8p+1020 0xf.fffffp+124 : 0xf.800000000000001p+1020 : inexact-ok
+= hypot downward binary128 0xf.8p+1020 0xf.fffffp+124 : 0xf.8p+1020 : inexact-ok
+= hypot tonearest binary128 0xf.8p+1020 0xf.fffffp+124 : 0xf.8p+1020 : inexact-ok
+= hypot towardzero binary128 0xf.8p+1020 0xf.fffffp+124 : 0xf.8p+1020 : inexact-ok
+= hypot upward binary128 0xf.8p+1020 0xf.fffffp+124 : 0xf.8000000000000000000000000008p+1020 : inexact-ok
+= hypot downward ibm128 0xf.8p+1020 0xf.fffffp+124 : 0xf.8p+1020 : inexact-ok
+= hypot tonearest ibm128 0xf.8p+1020 0xf.fffffp+124 : 0xf.8p+1020 : inexact-ok
+= hypot towardzero ibm128 0xf.8p+1020 0xf.fffffp+124 : 0xf.8p+1020 : inexact-ok
+= hypot upward ibm128 0xf.8p+1020 0xf.fffffp+124 : 0xf.80000000000000000000000004p+1020 : inexact-ok
+= hypot downward binary64 0xf.8p+1020 0xf.8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= hypot tonearest binary64 0xf.8p+1020 0xf.8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= hypot towardzero binary64 0xf.8p+1020 0xf.8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok
+= hypot upward binary64 0xf.8p+1020 0xf.8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= hypot downward intel96 0xf.8p+1020 0xf.8p+1020 : 0x1.5eb99734b41ee2cp+1024 : inexact-ok
+= hypot tonearest intel96 0xf.8p+1020 0xf.8p+1020 : 0x1.5eb99734b41ee2cp+1024 : inexact-ok
+= hypot towardzero intel96 0xf.8p+1020 0xf.8p+1020 : 0x1.5eb99734b41ee2cp+1024 : inexact-ok
+= hypot upward intel96 0xf.8p+1020 0xf.8p+1020 : 0x1.5eb99734b41ee2c2p+1024 : inexact-ok
+= hypot downward m68k96 0xf.8p+1020 0xf.8p+1020 : 0x1.5eb99734b41ee2cp+1024 : inexact-ok
+= hypot tonearest m68k96 0xf.8p+1020 0xf.8p+1020 : 0x1.5eb99734b41ee2cp+1024 : inexact-ok
+= hypot towardzero m68k96 0xf.8p+1020 0xf.8p+1020 : 0x1.5eb99734b41ee2cp+1024 : inexact-ok
+= hypot upward m68k96 0xf.8p+1020 0xf.8p+1020 : 0x1.5eb99734b41ee2c2p+1024 : inexact-ok
+= hypot downward binary128 0xf.8p+1020 0xf.8p+1020 : 0x1.5eb99734b41ee2c06d633acbb34p+1024 : inexact-ok
+= hypot tonearest binary128 0xf.8p+1020 0xf.8p+1020 : 0x1.5eb99734b41ee2c06d633acbb341p+1024 : inexact-ok
+= hypot towardzero binary128 0xf.8p+1020 0xf.8p+1020 : 0x1.5eb99734b41ee2c06d633acbb34p+1024 : inexact-ok
+= hypot upward binary128 0xf.8p+1020 0xf.8p+1020 : 0x1.5eb99734b41ee2c06d633acbb341p+1024 : inexact-ok
+= hypot downward ibm128 0xf.8p+1020 0xf.8p+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot tonearest ibm128 0xf.8p+1020 0xf.8p+1020 : plus_infty : inexact-ok overflow errno-erange
+= hypot towardzero ibm128 0xf.8p+1020 0xf.8p+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot upward ibm128 0xf.8p+1020 0xf.8p+1020 : plus_infty : xfail:ibm128-libgcc inexact-ok overflow errno-erange
+hypot 0x1.fp16383 0x1.fp16383 no-test-inline xfail-rounding:ibm128-libgcc
+= hypot downward binary32 0xf.fffffp+124 0xf.fffffp+124 : 0xf.fffffp+124 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot tonearest binary32 0xf.fffffp+124 0xf.fffffp+124 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero binary32 0xf.fffffp+124 0xf.fffffp+124 : 0xf.fffffp+124 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot upward binary32 0xf.fffffp+124 0xf.fffffp+124 : plus_infty : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange
+= hypot downward binary64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : no-test-inline inexact-ok
+= hypot towardzero binary64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66p+128 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d67p+128 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward intel96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest intel96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline inexact-ok
+= hypot towardzero intel96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward intel96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66116p+128 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward m68k96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest m68k96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114p+128 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward m68k96 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66116p+128 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward binary128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef82p+128 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef82p+128 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef82p+128 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef83p+128 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward ibm128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef8p+128 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest ibm128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef8p+128 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3ef8p+128 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward ibm128 0xf.fffffp+124 0xf.fffffp+124 : 0x1.6a09e4fde9d66114f6320ab3fp+128 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward binary64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero binary64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange
+= hypot downward intel96 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest intel96 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero intel96 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward intel96 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff801p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward m68k96 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest m68k96 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward m68k96 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff801p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward binary128 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary128 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary128 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8000000000000008p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward ibm128 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest ibm128 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward ibm128 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff80000000000004p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward intel96 0xf.fffffp+124 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest intel96 0xf.fffffp+124 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline inexact-ok
+= hypot towardzero intel96 0xf.fffffp+124 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward intel96 0xf.fffffp+124 0xf.8p+16380 : 0xf.800000000000001p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward m68k96 0xf.fffffp+124 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest m68k96 0xf.fffffp+124 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0xf.fffffp+124 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward m68k96 0xf.fffffp+124 0xf.8p+16380 : 0xf.800000000000001p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward binary128 0xf.fffffp+124 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary128 0xf.fffffp+124 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.fffffp+124 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary128 0xf.fffffp+124 0xf.8p+16380 : 0xf.8000000000000000000000000008p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward binary128 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary128 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary128 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffc08p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward ibm128 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest ibm128 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward ibm128 0xf.fffffp+124 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : no-test-inline xfail:ibm128-libgcc xfail:ibm128-libgcc inexact-ok overflow errno-erange
+= hypot downward binary64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero binary64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : plus_infty : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange
+= hypot downward intel96 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest intel96 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero intel96 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward intel96 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff801p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward m68k96 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest m68k96 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward m68k96 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff801p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward binary128 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary128 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary128 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8000000000000008p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward ibm128 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest ibm128 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward ibm128 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff80000000000004p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward binary64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot tonearest binary64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero binary64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot upward binary64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange
+= hypot downward intel96 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb8p+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest intel96 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb8p+1024 : no-test-inline inexact-ok
+= hypot towardzero intel96 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb8p+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward intel96 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdbap+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward m68k96 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb8p+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest m68k96 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb8p+1024 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb8p+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward m68k96 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdbap+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward binary128 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb863c7d3c9044dp+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary128 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb863c7d3c9044dp+1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb863c7d3c9044dp+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary128 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcbdb863c7d3c9044ep+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward ibm128 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot tonearest ibm128 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero ibm128 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot upward ibm128 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline xfail:ibm128-libgcc xfail:ibm128-libgcc inexact-ok overflow errno-erange
+= hypot downward intel96 0xf.ffffffffffff8p+1020 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest intel96 0xf.ffffffffffff8p+1020 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline inexact-ok
+= hypot towardzero intel96 0xf.ffffffffffff8p+1020 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward intel96 0xf.ffffffffffff8p+1020 0xf.8p+16380 : 0xf.800000000000001p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward m68k96 0xf.ffffffffffff8p+1020 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest m68k96 0xf.ffffffffffff8p+1020 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0xf.ffffffffffff8p+1020 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward m68k96 0xf.ffffffffffff8p+1020 0xf.8p+16380 : 0xf.800000000000001p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward binary128 0xf.ffffffffffff8p+1020 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary128 0xf.ffffffffffff8p+1020 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.ffffffffffff8p+1020 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary128 0xf.ffffffffffff8p+1020 0xf.8p+16380 : 0xf.8000000000000000000000000008p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward binary128 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0x1.6a09e667f3bcc08c7794a3b07db4p+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary128 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0x1.6a09e667f3bcc08c7794a3b07db5p+1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0x1.6a09e667f3bcc08c7794a3b07db4p+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary128 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0x1.6a09e667f3bcc08c7794a3b07db5p+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward ibm128 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot tonearest ibm128 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero ibm128 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot upward ibm128 0xf.ffffffffffff8p+1020 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : no-test-inline xfail:ibm128-libgcc xfail:ibm128-libgcc inexact-ok overflow errno-erange
+= hypot downward intel96 0xf.8p+16380 0xf.fffffp+124 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest intel96 0xf.8p+16380 0xf.fffffp+124 : 0xf.8p+16380 : no-test-inline inexact-ok
+= hypot towardzero intel96 0xf.8p+16380 0xf.fffffp+124 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward intel96 0xf.8p+16380 0xf.fffffp+124 : 0xf.800000000000001p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward m68k96 0xf.8p+16380 0xf.fffffp+124 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest m68k96 0xf.8p+16380 0xf.fffffp+124 : 0xf.8p+16380 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0xf.8p+16380 0xf.fffffp+124 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward m68k96 0xf.8p+16380 0xf.fffffp+124 : 0xf.800000000000001p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward binary128 0xf.8p+16380 0xf.fffffp+124 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary128 0xf.8p+16380 0xf.fffffp+124 : 0xf.8p+16380 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.8p+16380 0xf.fffffp+124 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary128 0xf.8p+16380 0xf.fffffp+124 : 0xf.8000000000000000000000000008p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward intel96 0xf.8p+16380 0xf.ffffffffffff8p+1020 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest intel96 0xf.8p+16380 0xf.ffffffffffff8p+1020 : 0xf.8p+16380 : no-test-inline inexact-ok
+= hypot towardzero intel96 0xf.8p+16380 0xf.ffffffffffff8p+1020 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward intel96 0xf.8p+16380 0xf.ffffffffffff8p+1020 : 0xf.800000000000001p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward m68k96 0xf.8p+16380 0xf.ffffffffffff8p+1020 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest m68k96 0xf.8p+16380 0xf.ffffffffffff8p+1020 : 0xf.8p+16380 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0xf.8p+16380 0xf.ffffffffffff8p+1020 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward m68k96 0xf.8p+16380 0xf.ffffffffffff8p+1020 : 0xf.800000000000001p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward binary128 0xf.8p+16380 0xf.ffffffffffff8p+1020 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary128 0xf.8p+16380 0xf.ffffffffffff8p+1020 : 0xf.8p+16380 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.8p+16380 0xf.ffffffffffff8p+1020 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary128 0xf.8p+16380 0xf.ffffffffffff8p+1020 : 0xf.8000000000000000000000000008p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward intel96 0xf.8p+16380 0xf.8p+16380 : 0xf.fffffffffffffffp+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot tonearest intel96 0xf.8p+16380 0xf.8p+16380 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero intel96 0xf.8p+16380 0xf.8p+16380 : 0xf.fffffffffffffffp+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot upward intel96 0xf.8p+16380 0xf.8p+16380 : plus_infty : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange
+= hypot downward m68k96 0xf.8p+16380 0xf.8p+16380 : 0xf.fffffffffffffffp+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot tonearest m68k96 0xf.8p+16380 0xf.8p+16380 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero m68k96 0xf.8p+16380 0xf.8p+16380 : 0xf.fffffffffffffffp+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot upward m68k96 0xf.8p+16380 0xf.8p+16380 : plus_infty : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange
+= hypot downward binary128 0xf.8p+16380 0xf.8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot tonearest binary128 0xf.8p+16380 0xf.8p+16380 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero binary128 0xf.8p+16380 0xf.8p+16380 : 0xf.fffffffffffffffffffffffffff8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot upward binary128 0xf.8p+16380 0xf.8p+16380 : plus_infty : no-test-inline xfail:ibm128-libgcc inexact-ok overflow errno-erange
+= hypot downward binary128 0xf.8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary128 0xf.8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.8p+16380 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary128 0xf.8p+16380 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.8000000000000000000000000008p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 : 0xf.ffffffffffffbffffffffffffc08p+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.fffffp+124 : plus_infty : no-test-inline xfail:ibm128-libgcc xfail:ibm128-libgcc inexact-ok overflow errno-erange
+= hypot downward binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcc08c7794a3b07db4p+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcc08c7794a3b07db5p+1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcc08c7794a3b07db4p+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 : 0x1.6a09e667f3bcc08c7794a3b07db5p+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot tonearest ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot upward ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline xfail:ibm128-libgcc xfail:ibm128-libgcc inexact-ok overflow errno-erange
+= hypot downward binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.8p+16380 : 0xf.8p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.8p+16380 : 0xf.8000000000000000000000000008p+16380 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0x1.6a09e667f3bcc3608b617397f716p+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot tonearest binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0x1.6a09e667f3bcc3608b617397f717p+1024 : no-test-inline inexact-ok
+= hypot towardzero binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0x1.6a09e667f3bcc3608b617397f716p+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot upward binary128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0x1.6a09e667f3bcc3608b617397f717p+1024 : no-test-inline xfail:ibm128-libgcc inexact-ok
+= hypot downward ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot tonearest ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange
+= hypot towardzero ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 : 0xf.ffffffffffffbffffffffffffcp+1020 : no-test-inline xfail:ibm128-libgcc xfail:ibm128-libgcc inexact-ok overflow errno-erange-ok
+= hypot upward ibm128 0xf.ffffffffffffbffffffffffffcp+1020 0xf.ffffffffffffbffffffffffffcp+1020 : plus_infty : no-test-inline xfail:ibm128-libgcc xfail:ibm128-libgcc inexact-ok overflow errno-erange
+hypot 0x1p-127 0x1p-149
+= hypot downward binary32 0x2p-128 0x8p-152 : 0x2p-128 : inexact-ok underflow errno-erange-ok
+= hypot tonearest binary32 0x2p-128 0x8p-152 : 0x2p-128 : inexact-ok underflow errno-erange-ok
+= hypot towardzero binary32 0x2p-128 0x8p-152 : 0x2p-128 : inexact-ok underflow errno-erange-ok
+= hypot upward binary32 0x2p-128 0x8p-152 : 0x2.000008p-128 : inexact-ok underflow errno-erange-ok
+= hypot downward binary64 0x2p-128 0x8p-152 : 0x2.00000000000fep-128 : inexact-ok
+= hypot tonearest binary64 0x2p-128 0x8p-152 : 0x2.00000000001p-128 : inexact-ok
+= hypot towardzero binary64 0x2p-128 0x8p-152 : 0x2.00000000000fep-128 : inexact-ok
+= hypot upward binary64 0x2p-128 0x8p-152 : 0x2.00000000001p-128 : inexact-ok
+= hypot downward intel96 0x2p-128 0x8p-152 : 0x2.00000000000ffffcp-128 : inexact-ok
+= hypot tonearest intel96 0x2p-128 0x8p-152 : 0x2.00000000001p-128 : inexact-ok
+= hypot towardzero intel96 0x2p-128 0x8p-152 : 0x2.00000000000ffffcp-128 : inexact-ok
+= hypot upward intel96 0x2p-128 0x8p-152 : 0x2.00000000001p-128 : inexact-ok
+= hypot downward m68k96 0x2p-128 0x8p-152 : 0x2.00000000000ffffcp-128 : inexact-ok
+= hypot tonearest m68k96 0x2p-128 0x8p-152 : 0x2.00000000001p-128 : inexact-ok
+= hypot towardzero m68k96 0x2p-128 0x8p-152 : 0x2.00000000000ffffcp-128 : inexact-ok
+= hypot upward m68k96 0x2p-128 0x8p-152 : 0x2.00000000001p-128 : inexact-ok
+= hypot downward binary128 0x2p-128 0x8p-152 : 0x2.00000000000fffffffffffcp-128 : inexact-ok
+= hypot tonearest binary128 0x2p-128 0x8p-152 : 0x2.00000000000fffffffffffcp-128 : inexact-ok
+= hypot towardzero binary128 0x2p-128 0x8p-152 : 0x2.00000000000fffffffffffcp-128 : inexact-ok
+= hypot upward binary128 0x2p-128 0x8p-152 : 0x2.00000000000fffffffffffc00002p-128 : inexact-ok
+= hypot downward ibm128 0x2p-128 0x8p-152 : 0x2.00000000000fffffffffffcp-128 : inexact-ok
+= hypot tonearest ibm128 0x2p-128 0x8p-152 : 0x2.00000000000fffffffffffcp-128 : inexact-ok
+= hypot towardzero ibm128 0x2p-128 0x8p-152 : 0x2.00000000000fffffffffffcp-128 : inexact-ok
+= hypot upward ibm128 0x2p-128 0x8p-152 : 0x2.00000000000fffffffffffc001p-128 : inexact-ok
+hypot 0x1p-1023 0x1p-1074
+= hypot downward binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot upward binary32 0x8p-152 0x8p-152 : 0x1p-148 : inexact-ok underflow errno-erange-ok
+= hypot downward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754bp-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3758p-152 : inexact-ok
+= hypot downward binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward binary64 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x4p-1076 : 0x8.0000000000008p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-1076 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x4p-1076 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot upward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot downward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot upward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x2p-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x2p-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x2p-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x2p-1024 0x8p-152 : 0x8.0000000000008p-152 : inexact-ok
+= hypot downward intel96 0x2p-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x2p-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x2p-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x2p-1024 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x2p-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x2p-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x2p-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x2p-1024 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x2p-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x2p-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x2p-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x2p-1024 0x8p-152 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x2p-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x2p-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x2p-1024 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x2p-1024 0x8p-152 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward binary64 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok
+= hypot tonearest intel96 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok
+= hypot towardzero intel96 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok
+= hypot upward intel96 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok
+= hypot downward m68k96 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok
+= hypot tonearest m68k96 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok
+= hypot towardzero m68k96 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok
+= hypot upward m68k96 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok
+= hypot downward binary128 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok
+= hypot tonearest binary128 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok
+= hypot towardzero binary128 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok
+= hypot upward binary128 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok
+= hypot downward ibm128 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x2p-1024 0x0p+0 : 0x2p-1024 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x2p-1024 0x4p-1076 : 0x2p-1024 : inexact-ok underflow errno-erange-ok
+= hypot tonearest binary64 0x2p-1024 0x4p-1076 : 0x2p-1024 : inexact-ok underflow errno-erange-ok
+= hypot towardzero binary64 0x2p-1024 0x4p-1076 : 0x2p-1024 : inexact-ok underflow errno-erange-ok
+= hypot upward binary64 0x2p-1024 0x4p-1076 : 0x2.0000000000004p-1024 : inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x2p-1024 0x4p-1076 : 0x2p-1024 : inexact-ok
+= hypot tonearest intel96 0x2p-1024 0x4p-1076 : 0x2p-1024 : inexact-ok
+= hypot towardzero intel96 0x2p-1024 0x4p-1076 : 0x2p-1024 : inexact-ok
+= hypot upward intel96 0x2p-1024 0x4p-1076 : 0x2.0000000000000004p-1024 : inexact-ok
+= hypot downward m68k96 0x2p-1024 0x4p-1076 : 0x2p-1024 : inexact-ok
+= hypot tonearest m68k96 0x2p-1024 0x4p-1076 : 0x2p-1024 : inexact-ok
+= hypot towardzero m68k96 0x2p-1024 0x4p-1076 : 0x2p-1024 : inexact-ok
+= hypot upward m68k96 0x2p-1024 0x4p-1076 : 0x2.0000000000000004p-1024 : inexact-ok
+= hypot downward binary128 0x2p-1024 0x4p-1076 : 0x2.00000000000000000000000003fep-1024 : inexact-ok
+= hypot tonearest binary128 0x2p-1024 0x4p-1076 : 0x2.00000000000000000000000004p-1024 : inexact-ok
+= hypot towardzero binary128 0x2p-1024 0x4p-1076 : 0x2.00000000000000000000000003fep-1024 : inexact-ok
+= hypot upward binary128 0x2p-1024 0x4p-1076 : 0x2.00000000000000000000000004p-1024 : inexact-ok
+= hypot downward ibm128 0x2p-1024 0x4p-1076 : 0x2p-1024 : inexact-ok underflow errno-erange-ok
+= hypot tonearest ibm128 0x2p-1024 0x4p-1076 : 0x2p-1024 : inexact-ok underflow errno-erange-ok
+= hypot towardzero ibm128 0x2p-1024 0x4p-1076 : 0x2p-1024 : inexact-ok underflow errno-erange-ok
+= hypot upward ibm128 0x2p-1024 0x4p-1076 : 0x2.0000000000004p-1024 : inexact-ok underflow errno-erange-ok
+hypot 0x1p-970 0x1p-1074
+= hypot downward binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x8p-152 : 0x8p-152 : inexact-ok underflow errno-erange-ok
+= hypot upward binary32 0x8p-152 0x8p-152 : 0x1p-148 : inexact-ok underflow errno-erange-ok
+= hypot downward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754bp-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3758p-152 : inexact-ok
+= hypot downward binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : inexact-ok
+= hypot downward binary64 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x8p-152 0x4p-1076 : 0x8.0000000000008p-152 : inexact-ok
+= hypot downward intel96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-1076 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x8p-152 0x4p-1076 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot downward binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary32 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary64 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward intel96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward binary128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot upward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : inexact-ok
+= hypot downward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot tonearest intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot towardzero intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot upward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot downward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot upward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot downward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot tonearest binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot towardzero binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot upward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok
+= hypot downward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-972 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary64 0x4p-972 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary64 0x4p-972 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary64 0x4p-972 0x8p-152 : 0x8.0000000000008p-152 : inexact-ok
+= hypot downward intel96 0x4p-972 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest intel96 0x4p-972 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero intel96 0x4p-972 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward intel96 0x4p-972 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward m68k96 0x4p-972 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest m68k96 0x4p-972 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero m68k96 0x4p-972 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward m68k96 0x4p-972 0x8p-152 : 0x8.000000000000001p-152 : inexact-ok
+= hypot downward binary128 0x4p-972 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest binary128 0x4p-972 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero binary128 0x4p-972 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward binary128 0x4p-972 0x8p-152 : 0x8.0000000000000000000000000008p-152 : inexact-ok
+= hypot downward ibm128 0x4p-972 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot tonearest ibm128 0x4p-972 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot towardzero ibm128 0x4p-972 0x8p-152 : 0x8p-152 : inexact-ok
+= hypot upward ibm128 0x4p-972 0x8p-152 : 0x8.00000000000000000000000004p-152 : inexact-ok
+= hypot downward binary64 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok
+= hypot tonearest binary64 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok
+= hypot towardzero binary64 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok
+= hypot upward binary64 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok
+= hypot downward intel96 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok
+= hypot tonearest intel96 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok
+= hypot towardzero intel96 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok
+= hypot upward intel96 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok
+= hypot downward m68k96 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok
+= hypot tonearest m68k96 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok
+= hypot towardzero m68k96 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok
+= hypot upward m68k96 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok
+= hypot downward binary128 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok
+= hypot tonearest binary128 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok
+= hypot towardzero binary128 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok
+= hypot upward binary128 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok
+= hypot downward ibm128 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x4p-972 0x0p+0 : 0x4p-972 : inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-972 0x4p-1076 : 0x4p-972 : inexact-ok
+= hypot tonearest binary64 0x4p-972 0x4p-1076 : 0x4p-972 : inexact-ok
+= hypot towardzero binary64 0x4p-972 0x4p-1076 : 0x4p-972 : inexact-ok
+= hypot upward binary64 0x4p-972 0x4p-1076 : 0x4.0000000000004p-972 : inexact-ok
+= hypot downward intel96 0x4p-972 0x4p-1076 : 0x4p-972 : inexact-ok
+= hypot tonearest intel96 0x4p-972 0x4p-1076 : 0x4p-972 : inexact-ok
+= hypot towardzero intel96 0x4p-972 0x4p-1076 : 0x4p-972 : inexact-ok
+= hypot upward intel96 0x4p-972 0x4p-1076 : 0x4.0000000000000008p-972 : inexact-ok
+= hypot downward m68k96 0x4p-972 0x4p-1076 : 0x4p-972 : inexact-ok
+= hypot tonearest m68k96 0x4p-972 0x4p-1076 : 0x4p-972 : inexact-ok
+= hypot towardzero m68k96 0x4p-972 0x4p-1076 : 0x4p-972 : inexact-ok
+= hypot upward m68k96 0x4p-972 0x4p-1076 : 0x4.0000000000000008p-972 : inexact-ok
+= hypot downward binary128 0x4p-972 0x4p-1076 : 0x4p-972 : inexact-ok
+= hypot tonearest binary128 0x4p-972 0x4p-1076 : 0x4p-972 : inexact-ok
+= hypot towardzero binary128 0x4p-972 0x4p-1076 : 0x4p-972 : inexact-ok
+= hypot upward binary128 0x4p-972 0x4p-1076 : 0x4.0000000000000000000000000004p-972 : inexact-ok
+= hypot downward ibm128 0x4p-972 0x4p-1076 : 0x4p-972 : inexact-ok underflow errno-erange-ok
+= hypot tonearest ibm128 0x4p-972 0x4p-1076 : 0x4p-972 : inexact-ok underflow errno-erange-ok
+= hypot towardzero ibm128 0x4p-972 0x4p-1076 : 0x4p-972 : inexact-ok underflow errno-erange-ok
+= hypot upward ibm128 0x4p-972 0x4p-1076 : 0x4.00000000000000000000000004p-972 : inexact-ok underflow errno-erange-ok
+hypot 0x1p-16383 0x1p-16445 no-test-inline
+= hypot downward binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary32 0x8p-152 0x8p-152 : 0x1p-148 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754bp-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3758p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x4p-1076 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-1076 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x4p-1076 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-16448 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-16448 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-16448 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-1076 0x8p-152 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x4p-1076 0x8p-152 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa58p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x8p-16448 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x8p-16448 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x8p-16448 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x2p-16384 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x2p-16384 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x2p-16384 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x2p-16384 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x2p-16384 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x2p-16384 0x4p-1076 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest intel96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero intel96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward intel96 0x2p-16384 0x8p-16448 : 0x2.0000000000000008p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward m68k96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x2p-16384 0x8p-16448 : 0x2.0000000000000004p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x2p-16384 0x8p-16448 : 0x2.0000000000000000000000000004p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+hypot 0x1p-16384 0x1p-16446 no-test-inline
+= hypot downward binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary32 0x8p-152 0x8p-152 : 0x1p-148 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754bp-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3758p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x4p-1076 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-1076 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x4p-1076 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-16448 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-16448 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-16448 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x4p-16448 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-16448 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-1076 0x8p-152 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x4p-1076 0x8p-152 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa58p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x8p-16448 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x8p-16448 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x8p-16448 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x4p-16448 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x4p-16448 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x1p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x1p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x1p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x1p-16384 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x1p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x1p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x1p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x1p-16384 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x1p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x1p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x1p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x1p-16384 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x1p-16384 0x0p+0 : 0x1p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x1p-16384 0x0p+0 : 0x1p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x1p-16384 0x0p+0 : 0x1p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x1p-16384 0x0p+0 : 0x1p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x1p-16384 0x0p+0 : 0x1p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x1p-16384 0x0p+0 : 0x1p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x1p-16384 0x0p+0 : 0x1p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x1p-16384 0x0p+0 : 0x1p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x1p-16384 0x0p+0 : 0x1p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x1p-16384 0x0p+0 : 0x1p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x1p-16384 0x0p+0 : 0x1p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x1p-16384 0x0p+0 : 0x1p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x1p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x1p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x1p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x1p-16384 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x1p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x1p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x1p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x1p-16384 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x1p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x1p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x1p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x1p-16384 0x4p-1076 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x1p-16384 0x8p-16448 : 0x1p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest intel96 0x1p-16384 0x8p-16448 : 0x1p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero intel96 0x1p-16384 0x8p-16448 : 0x1p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward intel96 0x1p-16384 0x8p-16448 : 0x1.0000000000000008p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward m68k96 0x1p-16384 0x8p-16448 : 0x1p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest m68k96 0x1p-16384 0x8p-16448 : 0x1p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero m68k96 0x1p-16384 0x8p-16448 : 0x1p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward m68k96 0x1p-16384 0x8p-16448 : 0x1.0000000000000004p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x1p-16384 0x8p-16448 : 0x1p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x1p-16384 0x8p-16448 : 0x1p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x1p-16384 0x8p-16448 : 0x1p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x1p-16384 0x8p-16448 : 0x1.0000000000000000000000000004p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward m68k96 0x1p-16384 0x4p-16448 : 0x1p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest m68k96 0x1p-16384 0x4p-16448 : 0x1p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero m68k96 0x1p-16384 0x4p-16448 : 0x1p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward m68k96 0x1p-16384 0x4p-16448 : 0x1.0000000000000004p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x1p-16384 0x4p-16448 : 0x1p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x1p-16384 0x4p-16448 : 0x1p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x1p-16384 0x4p-16448 : 0x1p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x1p-16384 0x4p-16448 : 0x1.0000000000000000000000000004p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+hypot 0x1p-16383 0x1p-16494 no-test-inline
+= hypot downward binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary32 0x8p-152 0x8p-152 : 0x1p-148 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de6p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x8p-152 : 0xb.504f333f9de68p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6484p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-152 : 0xb.504f333f9de6485p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754a8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754bp-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3754p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x8p-152 : 0xb.504f333f9de6484597d89b3758p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x0p+0 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x8p-152 0x4p-1076 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x4p-1076 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-1076 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x8p-152 0x4p-1076 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x8p-152 0x4p-1076 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x8p-152 0x8p-16448 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x8p-16448 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x8p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x8p-16448 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x8p-152 0x4p-16448 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-16448 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-16448 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x8p-152 0x4p-16496 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x8p-152 0x4p-16496 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x8p-152 0x4p-16496 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x8p-152 0x4p-16496 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary32 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot downward binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary32 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary64 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot upward ibm128 0x0p+0 0x0p+0 : 0x0p+0 : no-test-inline inexact-ok
+= hypot downward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x0p+0 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 0x8p-16448 : 0x8p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 0x4p-16448 : 0x4p-16448 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x0p+0 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x0p+0 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x0p+0 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x0p+0 0x4p-16496 : 0x4p-16496 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary64 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary64 0x4p-1076 0x8p-152 : 0x8.0000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero ibm128 0x4p-1076 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward ibm128 0x4p-1076 0x8p-152 : 0x8.00000000000000000000000004p-152 : no-test-inline inexact-ok
+= hypot downward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x0p+0 : 0x4p-1076 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary64 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary64 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef3242p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32428p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa54p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x4p-1076 : 0x5.a827999fcef32422cbec4d9baa58p-1076 : no-test-inline inexact-ok
+= hypot downward ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero ibm128 0x4p-1076 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward ibm128 0x4p-1076 0x4p-1076 : 0x8p-1076 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x4p-1076 0x8p-16448 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x8p-16448 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x8p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x8p-16448 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x4p-1076 0x4p-16448 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x4p-16448 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x4p-16448 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x4p-1076 0x4p-16496 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x4p-1076 0x4p-16496 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x4p-1076 0x4p-16496 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x4p-1076 0x4p-16496 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward intel96 0x2p-16384 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward m68k96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward m68k96 0x2p-16384 0x8p-152 : 0x8.000000000000001p-152 : no-test-inline inexact-ok
+= hypot downward binary128 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x2p-16384 0x8p-152 : 0x8p-152 : no-test-inline inexact-ok
+= hypot upward binary128 0x2p-16384 0x8p-152 : 0x8.0000000000000000000000000008p-152 : no-test-inline inexact-ok
+= hypot downward intel96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest intel96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero intel96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward intel96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward m68k96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest binary128 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero binary128 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward binary128 0x2p-16384 0x0p+0 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward intel96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest intel96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero intel96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward intel96 0x2p-16384 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward m68k96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest m68k96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero m68k96 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward m68k96 0x2p-16384 0x4p-1076 : 0x4.0000000000000008p-1076 : no-test-inline inexact-ok
+= hypot downward binary128 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot tonearest binary128 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot towardzero binary128 0x2p-16384 0x4p-1076 : 0x4p-1076 : no-test-inline inexact-ok
+= hypot upward binary128 0x2p-16384 0x4p-1076 : 0x4.0000000000000000000000000004p-1076 : no-test-inline inexact-ok
+= hypot downward intel96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest intel96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero intel96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward intel96 0x2p-16384 0x8p-16448 : 0x2.0000000000000008p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward m68k96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x2p-16384 0x8p-16448 : 0x2.0000000000000004p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x2p-16384 0x8p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x2p-16384 0x8p-16448 : 0x2.0000000000000000000000000004p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward m68k96 0x2p-16384 0x4p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot tonearest m68k96 0x2p-16384 0x4p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot towardzero m68k96 0x2p-16384 0x4p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot upward m68k96 0x2p-16384 0x4p-16448 : 0x2.0000000000000004p-16384 : no-test-inline inexact-ok underflow-ok errno-erange-ok
+= hypot downward binary128 0x2p-16384 0x4p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x2p-16384 0x4p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x2p-16384 0x4p-16448 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x2p-16384 0x4p-16448 : 0x2.0000000000000000000000000004p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot downward binary128 0x2p-16384 0x4p-16496 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot tonearest binary128 0x2p-16384 0x4p-16496 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot towardzero binary128 0x2p-16384 0x4p-16496 : 0x2p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+= hypot upward binary128 0x2p-16384 0x4p-16496 : 0x2.0000000000000000000000000004p-16384 : no-test-inline inexact-ok underflow errno-erange-ok
+hypot -0x1.fa7deap+0 0x1.a761bab383ac8p+0
+= hypot downward binary32 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942414p+0 : inexact-ok
+= hypot tonearest binary32 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942418p+0 : inexact-ok
+= hypot towardzero binary32 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942414p+0 : inexact-ok
+= hypot upward binary32 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942418p+0 : inexact-ok
+= hypot downward binary64 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f08p+0 : inexact-ok
+= hypot tonearest binary64 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f0ap+0 : inexact-ok
+= hypot towardzero binary64 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f08p+0 : inexact-ok
+= hypot upward binary64 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f0ap+0 : inexact-ok
+= hypot downward intel96 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f09774p+0 : inexact-ok
+= hypot tonearest intel96 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f09774p+0 : inexact-ok
+= hypot towardzero intel96 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f09774p+0 : inexact-ok
+= hypot upward intel96 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f09778p+0 : inexact-ok
+= hypot downward m68k96 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f09774p+0 : inexact-ok
+= hypot tonearest m68k96 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f09774p+0 : inexact-ok
+= hypot towardzero m68k96 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f09774p+0 : inexact-ok
+= hypot upward m68k96 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f09778p+0 : inexact-ok
+= hypot downward binary128 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f09774af5c9bfb38f4p+0 : inexact-ok
+= hypot tonearest binary128 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f09774af5c9bfb38f4p+0 : inexact-ok
+= hypot towardzero binary128 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f09774af5c9bfb38f4p+0 : inexact-ok
+= hypot upward binary128 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f09774af5c9bfb38f6p+0 : inexact-ok
+= hypot downward ibm128 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f09774af5c9bfb38p+0 : inexact-ok
+= hypot tonearest ibm128 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f09774af5c9bfb39p+0 : inexact-ok
+= hypot towardzero ibm128 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f09774af5c9bfb38p+0 : inexact-ok
+= hypot upward ibm128 -0x1.fa7deap+0 0x1.a761bcp+0 : 0x2.942417c052f09774af5c9bfb39p+0 : inexact-ok
+= hypot downward binary32 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.942414p+0 : inexact-ok
+= hypot tonearest binary32 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.942418p+0 : inexact-ok
+= hypot towardzero binary32 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.942414p+0 : inexact-ok
+= hypot upward binary32 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.942418p+0 : inexact-ok
+= hypot downward binary64 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d82p+0 : inexact-ok
+= hypot tonearest binary64 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d82p+0 : inexact-ok
+= hypot towardzero binary64 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d82p+0 : inexact-ok
+= hypot upward binary64 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d84p+0 : inexact-ok
+= hypot downward intel96 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d8295p+0 : inexact-ok
+= hypot tonearest intel96 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d82954p+0 : inexact-ok
+= hypot towardzero intel96 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d8295p+0 : inexact-ok
+= hypot upward intel96 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d82954p+0 : inexact-ok
+= hypot downward m68k96 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d8295p+0 : inexact-ok
+= hypot tonearest m68k96 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d82954p+0 : inexact-ok
+= hypot towardzero m68k96 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d8295p+0 : inexact-ok
+= hypot upward m68k96 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d82954p+0 : inexact-ok
+= hypot downward binary128 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d8295383869f98515p+0 : inexact-ok
+= hypot tonearest binary128 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d8295383869f98515p+0 : inexact-ok
+= hypot towardzero binary128 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d8295383869f98515p+0 : inexact-ok
+= hypot upward binary128 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d8295383869f985152p+0 : inexact-ok
+= hypot downward ibm128 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d8295383869f9851p+0 : inexact-ok
+= hypot tonearest ibm128 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d8295383869f9851p+0 : inexact-ok
+= hypot towardzero ibm128 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d8295383869f9851p+0 : inexact-ok
+= hypot upward ibm128 -0x1.fa7deap+0 0x1.a761bap+0 : 0x2.94241677f3d8295383869f9852p+0 : inexact-ok
+= hypot downward binary64 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158ap+0 : inexact-ok
+= hypot tonearest binary64 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a2p+0 : inexact-ok
+= hypot towardzero binary64 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158ap+0 : inexact-ok
+= hypot upward binary64 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a2p+0 : inexact-ok
+= hypot downward intel96 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a1p+0 : inexact-ok
+= hypot tonearest intel96 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a1p+0 : inexact-ok
+= hypot towardzero intel96 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a1p+0 : inexact-ok
+= hypot upward intel96 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a1004p+0 : inexact-ok
+= hypot downward m68k96 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a1p+0 : inexact-ok
+= hypot tonearest m68k96 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a1p+0 : inexact-ok
+= hypot towardzero m68k96 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a1p+0 : inexact-ok
+= hypot upward m68k96 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a1004p+0 : inexact-ok
+= hypot downward binary128 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a10019b3e0226196p+0 : inexact-ok
+= hypot tonearest binary128 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a10019b3e02261962p+0 : inexact-ok
+= hypot towardzero binary128 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a10019b3e0226196p+0 : inexact-ok
+= hypot upward binary128 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a10019b3e02261962p+0 : inexact-ok
+= hypot downward ibm128 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a10019b3e022619p+0 : inexact-ok
+= hypot tonearest ibm128 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a10019b3e022619p+0 : inexact-ok
+= hypot towardzero ibm128 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a10019b3e022619p+0 : inexact-ok
+= hypot upward ibm128 -0x1.fa7deap+0 0x1.a761bab383ac8p+0 : 0x2.942416eb158a10019b3e02261ap+0 : inexact-ok