aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/asan/no-redundant-instrumentation-15.c
blob: ad6a0bb041e2fd0f8866b0ecde8624cbc63016ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { dg-options "-fdump-tree-sanopt" } */
/* { dg-do compile } */
/* { dg-skip-if "" { *-*-* } { "-flto" } { "" } } */

void
foo (char *p)
{
  volatile int two = 2;
  __builtin_memcpy (p, "abc", two);
  /* This generates a __builtin___asan_report_store1 because we don't
     optimize previous memcpy call.  */
  p[0] = 'd';
}

/* { dg-final { scan-tree-dump-times "__builtin___asan_report_store1" 1 "sanopt" } } */