blob: f63a95c71c53160f1c99ad9578882d1869227294 [file] [log] [blame]
void f(void)
{
goto A;
A: __attribute__((cold))
goto B;
B: __attribute__((hot))
return;
}