URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [bitfld-13.c] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test invalid bit-field types: bug 18498. */ /* { dg-do compile } */ /* { dg-options "" } */ int main(void) { struct X { int s[20] : 1; /* { dg-error "error: bit-field 's' has invalid type" } */ int *p : 2; /* { dg-error "error: bit-field 'p' has invalid type" } */ int (*f)(float) : 3; /* { dg-error "error: bit-field 'f' has invalid type" } */ } x; return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log