* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr27087.c
blob3add13bcbeb36d7e8d761ccb44a41c1ff8891ba3
1 extern int ptbl[4];
2 extern int ctbl[4];
4 void doViews(void) {
5 int *c = ctbl, *p = ptbl;
6 while (1)
8 p++;
9 c++;
10 if (*p)
12 if (c == p)
14 if (*c)
15 return;
17 else
18 return;
22 g();