Commit 502a18ca by John David Anglin

pr52451.c (main): Skip long double test on hppa*-*-hpux*.

	* gcc.dg/torture/pr52451.c (main): Skip long double test on
	hppa*-*-hpux*.

From-SVN: r256871
parent 90e04a34
2018-01-18 John David Anglin <danglin@gcc.gnu.org>
* gcc.dg/torture/pr52451.c (main): Skip long double test on
hppa*-*-hpux*.
2018-01-18 Jakub Jelinek <jakub@redhat.com>
PR ipa/83619
......
......@@ -49,7 +49,11 @@ main (void)
TEST (float, f);
TEST (double, );
#if !defined(__hppa__) || !defined(__hpux__)
/* Long double on hppa*-hpux* is implemented in software and the routines
in fenv.h do not support it. */
TEST (long double, l);
#endif
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment