URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [Wdeclaration-after-statement-3.c] - Rev 708
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR 35058: -Werror= works only with some warnings. */ /* { dg-do compile } */ /* { dg-options "-std=c99 -pedantic -Werror=declaration-after-statement" } */ /* { dg-message "some warnings being treated as errors" "" {target "*-*-*"} 0 } */ extern void abort (void); extern void exit (int); int main (void) { int i = 0; if (i != 0) abort (); i++; if (i != 1) abort (); int j = i; /* { dg-error "" "declaration-after-statement" } */ if (j != 1) abort (); struct foo { int i0; } k = { 4 }; /* { dg-error "" "declaration-after-statement" } */ if (k.i0 != 4) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log