foo(int x)1 static inline int foo (int x) { return x + 1; }
bar(void)2 __attribute__ ((__optimize__ (0))) int bar (void) { return foo (100); }
3