URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr49029.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR middle-end/49029 */ /* { dg-require-effective-target int32plus } */ struct S { volatile unsigned f : 11; signed g : 30; } __attribute__((packed)); struct T { volatile struct S h; } __attribute__((packed)) a; void foo (int); void bar () { foo (a.h.g); }
Go to most recent revision | Compare with Previous | Blame | View Log