diff options
author | Bill Schmidt <wschmidt@linux.ibm.com> | 2012-04-23 14:06:11 +0000 |
---|---|---|
committer | William Schmidt <wschmidt@gcc.gnu.org> | 2012-04-23 14:06:11 +0000 |
commit | c6f9b038be55acdc36911affcb116a60dd1181da (patch) | |
tree | 3fae128d694a1f680d9d80b7472a7d4a38c5023c /gcc | |
parent | 492eaa8dcff5e04aa23b0af40053c43a856763f0 (diff) | |
download | gcc-c6f9b038be55acdc36911affcb116a60dd1181da.zip gcc-c6f9b038be55acdc36911affcb116a60dd1181da.tar.gz gcc-c6f9b038be55acdc36911affcb116a60dd1181da.tar.bz2 |
re PR regression/53076 (gcc.dg/torture/builtin-explog-1.c, gcc.dg/torture/builtin-power-1.c at -O0)
gcc-testsuite:
2012-04-23 Bill Schmidt <wschmidt@linux.ibm.com>
PR regression/53076
* gcc.dg/torture/builtin-explog-1.c: Skip if -O0.
* gcc.dg/torture/builtin-power-1.c: Likewise.
From-SVN: r186709
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/torture/builtin-explog-1.c | 1 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/torture/builtin-power-1.c | 1 |
3 files changed, 8 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ac08062..426d8fc 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2012-04-23 Bill Schmidt <wschmidt@linux.ibm.com> + + PR regression/53076 + * gcc.dg/torture/builtin-explog-1.c: Skip if -O0. + * gcc.dg/torture/builtin-power-1.c: Likewise. + 2012-04-23 Richard Guenther <rguenther@suse.de> PR tree-optimization/53070 diff --git a/gcc/testsuite/gcc.dg/torture/builtin-explog-1.c b/gcc/testsuite/gcc.dg/torture/builtin-explog-1.c index 7402061..545f923 100644 --- a/gcc/testsuite/gcc.dg/torture/builtin-explog-1.c +++ b/gcc/testsuite/gcc.dg/torture/builtin-explog-1.c @@ -7,6 +7,7 @@ /* { dg-do link } */ /* { dg-options "-ffast-math" } */ +/* { dg-skip-if "PR44214" { *-*-* } { "-O0" } { "" } } */ /* Define "e" with as many bits as found in builtins.c:dconste. */ #define M_E 2.7182818284590452353602874713526624977572470936999595749669676277241 diff --git a/gcc/testsuite/gcc.dg/torture/builtin-power-1.c b/gcc/testsuite/gcc.dg/torture/builtin-power-1.c index d1403c4..9e7c25a 100644 --- a/gcc/testsuite/gcc.dg/torture/builtin-power-1.c +++ b/gcc/testsuite/gcc.dg/torture/builtin-power-1.c @@ -8,6 +8,7 @@ /* { dg-do link } */ /* { dg-options "-ffast-math" } */ /* { dg-add-options c99_runtime } */ +/* { dg-skip-if "PR44214" { *-*-* } { "-O0" } { "" } } */ #include "../builtins-config.h" |