URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr49651.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ extern void abort (void); struct X { int *p; int *q; }; void __attribute__((noinline, noclone)) foo (struct X x) { *x.q = 0; } volatile int what; struct X y; int main() { int i, j; struct X x, *p; x.p = &i; x.q = &j; if (what) p = &y; else p = &x; j = 1; foo (*p); if (j != 0) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log