brintos

brintos / llvm-project-archived public Read only

0
0
Text · 181 B · c71cc37 Raw
7 lines · c
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