aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/analyzer/pr106845.c
blob: 528c7b3ea9ad41b6789d5c59aa68d9b7e7807677 (plain)
1
2
3
4
5
6
7
8
9
10
11
int buf_size;

int
main (void)
{
  char buf[buf_size];

  __builtin_memset (&buf[1], 0, buf_size);

  return 0;
}