Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / 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 }