URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [pragma-pack-5.c] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* Check that pragma pack overrides STRUCTURE_SIZE_BOUNDARY. */ /* { dg-do compile } */ #pragma pack(1) struct S { char a; }; int test[sizeof(struct S) == 1 ? 1: -1];
Go to most recent revision | Compare with Previous | Blame | View Log