middle-end: Fix stalled swapped condition code value [PR115836]
[official-gcc.git] / gcc / testsuite / c-c++-common / analyzer / memcpy-pr107882.c
blob4ecb0fd973f3f28ad0ba3b60f9d5acaadb771d65
1 void
2 foo (int *x, int y)
4 int *a = x, *b = (int *) &a;
6 __builtin_memcpy (b + 1, x, y);
7 foo (a, 0);