diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/warn/Warray-bounds.C | 1 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/Warray-bounds.c | 1 |
3 files changed, 8 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 7bec6e8..c825558 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2007-04-14 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> + + PR rtl-optimization/31500 + * gcc.dg/Warray-bounds.c: Skip on hppa*-*-*. + * g++.dg/warn/Warray-bounds.C: Likewise. + 2007-04-14 Andrew Pinski <andrew_pinski@playstation.sony.com> PR C/31520 diff --git a/gcc/testsuite/g++.dg/warn/Warray-bounds.C b/gcc/testsuite/g++.dg/warn/Warray-bounds.C index 0385516..4f7a397 100644 --- a/gcc/testsuite/g++.dg/warn/Warray-bounds.C +++ b/gcc/testsuite/g++.dg/warn/Warray-bounds.C @@ -1,4 +1,5 @@ /* { dg-do compile } */ +/* { dg-skip-if "PR 31500" { hppa*-*-* } { "*" } { "" } } */ /* { dg-options "-O2 -Warray-bounds" } */ int a[10]; diff --git a/gcc/testsuite/gcc.dg/Warray-bounds.c b/gcc/testsuite/gcc.dg/Warray-bounds.c index fde4570..31f6c6e 100644 --- a/gcc/testsuite/gcc.dg/Warray-bounds.c +++ b/gcc/testsuite/gcc.dg/Warray-bounds.c @@ -1,4 +1,5 @@ /* { dg-do compile } */ +/* { dg-skip-if "PR 31500" { hppa*-*-* } { "*" } { "" } } */ /* { dg-options "-O2 -Warray-bounds" } */ int a[10]; |