URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr48953.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-options "-fno-tree-dce" } */ static inline int foo (int n, int k) { struct S { int i[n]; int value; } s[2]; return s[k].value = 0; } int main () { return foo (2, 0); }
Go to most recent revision | Compare with Previous | Blame | View Log