llvm-for-llvmta/test/tools/llvm-objdump/ELF/ARM/Inputs/debug.c

11 lines
118 B
C
Raw Permalink Normal View History

2022-04-25 10:02:23 +02:00
int foo(int a, int b, int c) {
int x = a + b;
int y = x + c;
return y;
}
int bar(int a) {
a++;
return a;
}