URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [bf-pack-1.c] - Rev 711
Go to most recent revision | 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); }
Go to most recent revision | Compare with Previous | Blame | View Log