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