forked from OSchip/llvm-project
8 lines
119 B
C
8 lines
119 B
C
|
__attribute__((noinline)) int f(int a) {
|
||
|
return a + 1;
|
||
|
}
|
||
|
|
||
|
__attribute__((noinline)) int g(int a) {
|
||
|
return a + 2;
|
||
|
}
|