URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [vla-22.c] - Rev 713
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2" } */ extern void bar (int *); static inline __attribute__((always_inline)) int foo (int i) { struct S { int ar[1][i]; } s; s.ar[0][0] = 0; bar (&s.ar[0][0]); } void baz (int i) { foo (i + 2); }
Go to most recent revision | Compare with Previous | Blame | View Log