* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr46637.c
blobc765949e8ad61a871f43e992f62a4ce794742222
1 /* PR middle-end/46637 */
3 struct S { int s[5]; } *p;
5 void
6 foo (long x)
8 long a = x == 1 ? 4L : 1L;
9 asm ("" : "+m" (p->s[a]));
10 p->s[0]++;