blob: 5cfd611cd1778edae6274a92d2983feb9d9d4032 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "foo.h"
int __attribute__((always_inline)) inline_function() {
int z = 0;
z++;
return z;
}
int main() {
int res = foo();
res++;
res += inline_function();
res += foo();
return res;
}
|