* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr38621.c
blob746d32836be3c2bd06bc001d494398589879cbd4
1 /* PR target/38621 */
2 struct s
4 char a[512];
5 int b;
6 int c;
7 };
9 long long
10 foo (struct s *p, int m, int r)
12 if (r == m)
13 p->b = 3;
14 p->c = 1;
15 return m;