diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2007-04-15 01:17:41 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2007-04-15 01:17:41 +0000 |
commit | 65a333394f7ea2bc72b48aff8fa72e92f750d838 (patch) | |
tree | b1e0c46a84cc05f9a1c351ec7d88d254eece5e01 /gcc | |
parent | aa24028daf64ebdec03da6094b60c49f0823a16b (diff) | |
download | gcc-65a333394f7ea2bc72b48aff8fa72e92f750d838.zip gcc-65a333394f7ea2bc72b48aff8fa72e92f750d838.tar.gz gcc-65a333394f7ea2bc72b48aff8fa72e92f750d838.tar.bz2 |
re PR rtl-optimization/31500 (FAIL: gcc.dg/Warray-bounds.c (internal compiler error))
PR rtl-optimization/31500
* gcc.dg/Warray-bounds.c: Skip on hppa*-*-*.
* g++.dg/warn/Warray-bounds.C: Likewise.
From-SVN: r123837
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]; |