On Fri, Feb 12, 2016 at 02:17:19PM +0100, Andreas Schwab wrote: > FAIL: gcc.dg/pr69522.c (test for excess errors) > Excess errors: > /daten/aranym/gcc/gcc-20160212/gcc/testsuite/gcc.dg/pr69522.c:2:8: error: > struct has no members [-Wpedantic] > /daten/aranym/gcc/gcc-20160212/gcc/testsuite/gcc.dg/pr69522.c:9:8: error: ISO > C forbids empty initializer braces [-Wpedantic]
Bernd, ok to fix this with the following? 2016-02-12 Marek Polacek <pola...@redhat.com> * gcc.dg/pr69522.c: Add empty dg-options. diff --git gcc/testsuite/gcc.dg/pr69522.c gcc/testsuite/gcc.dg/pr69522.c index 452a1ae..820168d 100644 --- gcc/testsuite/gcc.dg/pr69522.c +++ gcc/testsuite/gcc.dg/pr69522.c @@ -1,4 +1,5 @@ /* { dg-do compile } */ +/* { dg-options "" } */ struct str {}; struct { struct str b; Marek