PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr83463.c
blobddf662f76a1c33d3a124642e82fc7def24b6b1ad
1 /* PR middle-end/83463 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -Wrestrict -Wno-pointer-to-int-cast" } */
5 int *a;
6 void *memcpy ();
7 void
8 m (void *p1)
10 memcpy (0, p1, 0);
13 void
14 p ()
16 m (p + (long) a);