* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr37742.c
blob4ef00be4a2817fc28f559ad2c0785e01c06b6152
1 void foo(int* __restrict__ p, int* q, int* p1, int *q1)
3 int i;
5 p = p1;
6 q = q1;
8 for (i = 0; i < 4; ++i)
9 *++q = *++p + 1;
12 void bar(int* p, int* __restrict__ q, int* p1, int *q1)
14 int i;
16 p = p1;
17 q = q1;
19 for (i = 0; i < 4; ++i)
20 *++q = *++p + 1;