1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/DebugInfo/Inputs/dwarfdump-test-32bit.elf.c
Eli Bendersky 294e89257b Add a test for checking the current .debug_frame dumping capability.
The test is a binary placed in test/DebugInfo/Inputs, with a source C
file used for reference/reproducing. The source's first line is a clang
build command for reproducing the binary.

llvm-svn: 174543
2013-02-06 20:55:06 +00:00

15 lines
237 B
C

// clang -c -g -o dwarfdump-test-32bit.elf.o -m32 dwarfdump-test-32bit.elf.c
extern int glob;
int foo(int arg) {
int a = arg * 2;
return a + glob;
}
int bar(int arg) {
int a = foo(arg) * foo(arg * 2);
return glob - foo(a);
}