* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20050801-2.c
blobba8dabaa3710f5b60edaf58ec001b2d7fde82e5d
1 /* { dg-skip-if "requires alloca" { ! alloca } { "-O0" } { "" } } */
2 __inline int f(int i)
4 struct {
5 int t[i];
6 } t;
7 return sizeof(t.t[i--]);
10 int g(int i)
12 return f(i);