static int __attribute__((noinline)) doNothingStatic() { return 5; } int __attribute__((noinline)) doNothing() { return 10;} int doAlmostNothing() { return doNothingStatic() + doNothing(); }