URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [pragma-pack-5.c] - Rev 313
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