aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr42559.c
blob: 60475e13e2063b19f29afbfbd7d5798fbe965ab6 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-require-effective-target label_values } */

void jumpfunc(int copy, void *p)
{
  void *l = &&jumplabel;
  if (copy)
    __builtin___memcpy_chk (p, l, 128, __builtin_object_size (p, 0));
jumplabel:
  return;
}