re PR rtl-optimization/31500 (FAIL: gcc.dg/Warray-bounds.c (internal compiler error))

PR rtl-optimization/31500
	* gcc.dg/Warray-bounds.c: Remove hppa xfails.
	* g++.dg/warn/Warray-bounds.C: Likewise.

From-SVN: r126924
This commit is contained in:
John David Anglin 2007-07-25 18:49:13 +00:00 committed by John David Anglin
parent 9566a75938
commit 39f86293e5
3 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2007-07-25 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR rtl-optimization/31500
* gcc.dg/Warray-bounds.c: Remove hppa xfails.
* g++.dg/warn/Warray-bounds.C: Likewise.
2007-07-25 H.J. Lu <hongjiu.lu@intel.com>
* gcc.dg/vect/costmodel/x86_64/costmodel-vect-reduc-1char.c: Updated.

View File

@ -1,5 +1,4 @@
/* { dg-do compile } */
/* { dg-xfail-if "PR 31500" { hppa*-*-* && { ! hppa*64*-*-* } } } */
/* { dg-options "-O2 -Warray-bounds" } */
int a[10];
@ -88,5 +87,5 @@ int* f(void) {
c.c[-1] = 0;
return a;
} /* { dg-excess-errors "PR 31500" { xfail { hppa*-*-* && { ! hppa*64*-*-* } } } } */
}

View File

@ -1,5 +1,4 @@
/* { dg-do compile } */
/* { dg-xfail-if "PR 31500" { hppa*-*-* && { ! hppa*64*-*-* } } } */
/* { dg-options "-O2 -Warray-bounds" } */
int a[10];
@ -91,5 +90,5 @@ int* f(void) {
a[i] = 1; /* { dg-warning "array subscript" } */
return a;
} /* { dg-excess-errors "PR 31500" { xfail { hppa*-*-* && { ! hppa*64*-*-* } } } } */
}