IRA: Ignore debug insns for uses in split_live_ranges_for_shrink_wrap. [PR116179]
[official-gcc.git] / gcc / testsuite / c-c++-common / analyzer / memcpy-2.c
blob25b0a5e4ff48a181d59ee5ad09fcb00fa0c29973
1 /* { dg-additional-options "-Wno-stringop-overflow -Wno-analyzer-out-of-bounds" } */
3 int
4 test (int c, void *v)
6 static char a[] = "";
7 __builtin_memcpy (v, a, -1);
8 return 0;