blob: 9142d273e7cb66400b05f2c09a42b75fa39317e1 [file] [log] [blame]
/* PR middle-end/83463 */
/* { dg-do compile } */
/* { dg-prune-output "conflicting types for built-in" } */
/* { dg-options "-O2 -Wrestrict -Wno-pointer-to-int-cast" } */
int *a;
void *memcpy ();
void
m (void *p1)
{
memcpy (0, p1, 0);
}
void
p ()
{
m (p + (long) a);
}
/* { dg-prune-output "\\\[-Wbuiltin-declaration-mismatch]" } */