URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [pointer-arith-5.c] - Rev 753
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test diagnostics for sizeof on void and function types. Test with no special options. */ /* Origin: Joseph Myers <joseph@codesourcery.com> */ /* { dg-do compile } */ /* { dg-options "" } */ extern const void v; void f(void); void g (void) { sizeof (v); sizeof (void); sizeof (f); sizeof (void (void)); }
Go to most recent revision | Compare with Previous | Blame | View Log