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