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
This commit is contained in:
John David Anglin 2018-01-19 00:22:33 +00:00
parent 90e04a348b
commit 502a18ca45
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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;
}