Commit c27fb14b by Richard Guenther Committed by Richard Biener

re PR middle-end/34801 (FAIL: gcc.dg/Warray-bounds.c)

2008-01-18  Richard Guenther   <rguenther@suse.de>

	PR middle-end/34801
	* gcc.dg/Warray-bounds.c: XFAIL two tests, remove one
	redundant one.

From-SVN: r131628
parent 4d93e079
2008-01-18 Richard Guenther <rguenther@suse.de>
PR middle-end/34801
* gcc.dg/Warray-bounds.c: XFAIL two tests, remove one
redundant one.
2008-01-18 Hans-Peter Nilsson <hp@axis.com>
* g++.dg/tree-ssa/pr34355.C: Correct order of dg-do and
......@@ -56,14 +56,13 @@ int* f(void) {
g(&a[8]);
g(&a[9]);
g(&a[10]);
g(&a[11]); /* { dg-warning "array subscript" } */
g(&a[11]); /* { dg-warning "array subscript" "" { xfail *-*-* } } */
g(&a[-30]+10); /* { dg-warning "array subscript" } */
g(&a[-30]+30);
g(&b[10]);
g(&c.c[10]);
g(&a[11]); /* { dg-warning "array subscript" } */
g(&b[11]); /* { dg-warning "array subscript" } */
g(&b[11]); /* { dg-warning "array subscript" "" { xfail *-*-* } } */
g(&c.c[11]); /* { dg-warning "array subscript" } */
g(&a[0]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment