]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR tree-optimization/68356 (FAIL: gcc.dg/torture/pr68264.c -O* execution test...
authorJohn David Anglin <danglin@gcc.gnu.org>
Tue, 12 Jan 2016 02:06:20 +0000 (02:06 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Tue, 12 Jan 2016 02:06:20 +0000 (02:06 +0000)
PR tree-optimization/68356
* gcc.dg/torture/pr68264.c: Disable exp2 ERANGE test on hppa unix.

From-SVN: r232256

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/torture/pr68264.c

index 8b734302f604bed602b50d1a4ee6587960d573fe..7e9fc7f2d601e0be3e840800c111469618d711e5 100644 (file)
@@ -1,3 +1,8 @@
+2016-01-11  John David Anglin  <danglin@gcc.gnu.org>
+
+       PR tree-optimization/68356
+       * gcc.dg/torture/pr68264.c: Disable exp2 ERANGE test on hppa unix.
+
 2016-01-12  Kugan Vivekanandarajah  <kuganv@linaro.org>
            Jim Wilson  <jim.wilson@linaro.org>
 
index 4a8863b6c178ce91e46362436a019f07e7ebf5b5..8396b34864f5deda1bcab1a5d0718740be252fc6 100644 (file)
@@ -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
     {