blob: 25b0a5e4ff48a181d59ee5ad09fcb00fa0c29973 (
plain)
1
2
3
4
5
6
7
8
9
|
/* { dg-additional-options "-Wno-stringop-overflow -Wno-analyzer-out-of-bounds" } */
int
test (int c, void *v)
{
static char a[] = "";
__builtin_memcpy (v, a, -1);
return 0;
}
|