Files
clang-p2996/llvm/test/tools/llvm-objdump/ELF/ARM/Inputs/debug.c
Fangrui Song d1bcddb5c1 [llvm-objdump][test] Move tests after dc4a6f5db4
Move RISCV/ to ELF/RISCV/ as well.
2020-07-11 16:45:05 -07:00

11 lines
118 B
C

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;
}