modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/pr42559.c (about)

     1  /* { dg-require-effective-target label_values } */
     2  
     3  void jumpfunc(int copy, void *p)
     4  {
     5    void *l = &&jumplabel;
     6    if (copy)
     7      __builtin___memcpy_chk (p, l, 128, __builtin_object_size (p, 0));
     8  jumplabel:
     9    return;
    10  }