* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20031011-1.c
blobe35d76211b629a2bca28a4180302a431a03b620d
1 /* PR optimization/12544 */
2 /* Origin: Tony Hosking <hosking@cs.purdue.edu> */
4 /* Verify that non-local structures passed by invisible
5 reference are correctly put in the stack. */
7 typedef struct {
8 int a;
9 int f;
10 } A;
12 A *b;
14 void x (A a) {
15 void y () {
16 a.a = 0;
19 b = &a;
20 y();