(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
attr-hotcold-1.c
       1  void f(void)
       2  {
       3    goto A;
       4   A: __attribute__((cold))
       5    goto B;
       6   B: __attribute__((hot))
       7    return;
       8  }