diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/array-11.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/array-11.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.dg/array-11.c b/gcc/testsuite/gcc.dg/array-11.c index dbf38ae..3b216a3 100644 --- a/gcc/testsuite/gcc.dg/array-11.c +++ b/gcc/testsuite/gcc.dg/array-11.c @@ -9,7 +9,7 @@ struct f { int w; T x; }; struct g { struct f f; }; struct g g1 = { { 0, { } } }; struct g g2 = { { 0, { 1 } } }; /* { dg-error "nested context" "nested" } */ - /* { dg-message "near init" "near" { target *-*-* } 11 } */ + /* { dg-message "near init" "near" { target *-*-* } .-1 } */ struct h { int x[0]; int y; }; struct h h1 = { { 0 }, 1 }; /* { dg-warning "excess elements" "excess" } */ - /* { dg-message "near init" "before end" { target *-*-* } 14 } */ + /* { dg-message "near init" "before end" { target *-*-* } .-1 } */ |