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.c-torture/] [execute/] [bf-pack-1.c] - Rev 297
Compare with Previous | Blame | View Log
struct foo { unsigned half:16; unsigned long whole:32 __attribute__ ((packed)); }; f (struct foo *q) { if (q->half != 0x1234) abort (); if (q->whole != 0x56789abcL) abort (); } main () { struct foo bar; bar.half = 0x1234; bar.whole = 0x56789abcL; f (&bar); exit (0); }