* asan.c (create_cond_insert_point): Maintain profile.
[official-gcc.git] / gcc / testsuite / gcc.dg / pr45733.c
blob5c83cd42ca5eddc659290eb9eba624c333bc8106
1 /* { dg-do compile } */
2 /* { dg-options "-O -fstrict-overflow -ftree-vectorize" } */
4 typedef __INTPTR_TYPE__ intptr_t;
6 intptr_t
7 foo (void **p, int i)
9 intptr_t x = 0;
10 while (i--)
11 x ^= (intptr_t) p[i];
12 return x;