aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/torture/pr50768.c
blob: 351b2f9661812e092870fca9f2e706fb97d7a0c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */
/* { dg-options "-ftracer" } */

char data[8];
int l1;

void
test1 (void)
{
  char buf[8];
  __builtin___mempcpy_chk (buf, data, l1 ? sizeof (buf) : 4,
			   __builtin_object_size (buf, 0));
  if (__builtin___memmove_chk
      (buf, data, l1 ? sizeof (buf) : 4,
       __builtin_object_size (buf, 0)) != buf)
    __builtin_abort ();
}