11 lines
216 B
C
11 lines
216 B
C
/* { dg-do compile } */
|
|
/* { dg-options "-O -fprofile-generate" } */
|
|
/* { dg-require-profiling "-fprofile-generate" } */
|
|
|
|
void
|
|
jumpfunc (void *p)
|
|
{
|
|
void *l = &&jumplabel;
|
|
jumplabel:
|
|
__builtin_memcpy (p, l, 1);
|
|
}
|