gcc/gcc/testsuite/gcc.dg/attr-hotcold-1.c

9 lines
98 B
C

void f(void)
{
goto A;
A: __attribute__((cold))
goto B;
B: __attribute__((hot))
return;
}