1#ifndef OTHER_H2#define OTHER_H3 4__attribute__((noinline)) void not_inlined_fn() {};5 6__attribute__((always_inline)) inline void inlined_fn() { not_inlined_fn(); }7#endif // OTHER_H