From: John David Anglin Date: Tue, 12 Jan 2016 02:06:20 +0000 (+0000) Subject: re PR tree-optimization/68356 (FAIL: gcc.dg/torture/pr68264.c -O* execution test... X-Git-Tag: basepoints/gcc-7~1710 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=feb20787df9cfe500d0fb41a157d77c8416bf0a7;p=thirdparty%2Fgcc.git re PR tree-optimization/68356 (FAIL: gcc.dg/torture/pr68264.c -O* execution test on x86_64-apple-darwin1(0|4)) PR tree-optimization/68356 * gcc.dg/torture/pr68264.c: Disable exp2 ERANGE test on hppa unix. From-SVN: r232256 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 8b734302f604..7e9fc7f2d601 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2016-01-11 John David Anglin + + PR tree-optimization/68356 + * gcc.dg/torture/pr68264.c: Disable exp2 ERANGE test on hppa unix. + 2016-01-12 Kugan Vivekanandarajah Jim Wilson diff --git a/gcc/testsuite/gcc.dg/torture/pr68264.c b/gcc/testsuite/gcc.dg/torture/pr68264.c index 4a8863b6c178..8396b34864f5 100644 --- a/gcc/testsuite/gcc.dg/torture/pr68264.c +++ b/gcc/testsuite/gcc.dg/torture/pr68264.c @@ -78,8 +78,9 @@ test (void) if (0) TEST (log1p (d), LARGE_NEG_EDOM); TEST (exp (d), POWER_ERANGE); -#if defined (__sun__) && defined (__unix__) - /* Disabled due to a bug in Solaris libm. */ +#if (defined (__sun__) || defined(__hppa__)) && defined (__unix__) + /* Disabled due to a bug in Solaris libm. HP PA-RISC libm doesn't support + ERANGE for exp2. */ if (0) #endif {