f(int a)1 __attribute__((noinline)) int f(int a) { 2 return a + 1; 3 } 4 g(int a)5 __attribute__((noinline)) int g(int a) { 6 return a + 2; 7 } 8