URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [packed-1.c] - Rev 297
Compare with Previous | Blame | View Log
short x1 = 17; struct { short i __attribute__ ((packed)); } t; f () { t.i = x1; if (t.i != 17) abort (); } main () { f (); exit (0); }