* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr41679.c
blobaa10cb612e34a0927b4372f90dd89cc507030fb2
1 /* { dg-options "-g" } */
3 extern int a;
4 extern char b;
5 extern int foo (void);
7 void
8 test (void)
10 int c;
11 b = foo () ? '~' : '\0';
12 while ((c = foo ()))
13 if (c == '7')
14 a = 0;