aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/analyzer/memcpy-pr107882.c
blob: 4ecb0fd973f3f28ad0ba3b60f9d5acaadb771d65 (plain)
1
2
3
4
5
6
7
8
void
foo (int *x, int y)
{
  int *a = x, *b = (int *) &a;

  __builtin_memcpy (b + 1, x, y);
  foo (a, 0);
}