1 2 3 4 5 6 7 8
void f(void) { goto A; A: __attribute__((cold)) goto B; B: __attribute__((hot)) return; }