URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [980612-1.c] - Rev 688
Compare with Previous | Blame | View Log
struct fd { unsigned char a; unsigned char b; } f = { 5 }; struct fd *g() { return &f; } int h() { return -1; } int main() { struct fd *f = g(); f->b = h(); if (((f->a & 0x7f) & ~0x10) <= 2) abort (); exit (0); }