diff options
author | Eli Bendersky <eliben@google.com> | 2013-02-06 20:55:06 +0000 |
---|---|---|
committer | Eli Bendersky <eliben@google.com> | 2013-02-06 20:55:06 +0000 |
commit | c0d905c0e925d3a23cec68180f24504172e78cfd (patch) | |
tree | 0e14f1f7d0e41376c3b03b2cec1a858cae85d1a0 /llvm/test/DebugInfo/Inputs/dwarfdump-test-32bit.elf.c | |
parent | ef4558abd3e8d56b87bbf4408a831b312685337e (diff) | |
download | bcm5719-llvm-c0d905c0e925d3a23cec68180f24504172e78cfd.tar.gz bcm5719-llvm-c0d905c0e925d3a23cec68180f24504172e78cfd.zip |
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
Diffstat (limited to 'llvm/test/DebugInfo/Inputs/dwarfdump-test-32bit.elf.c')
-rw-r--r-- | llvm/test/DebugInfo/Inputs/dwarfdump-test-32bit.elf.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/test/DebugInfo/Inputs/dwarfdump-test-32bit.elf.c b/llvm/test/DebugInfo/Inputs/dwarfdump-test-32bit.elf.c new file mode 100644 index 00000000000..708e037f4e3 --- /dev/null +++ b/llvm/test/DebugInfo/Inputs/dwarfdump-test-32bit.elf.c @@ -0,0 +1,14 @@ +// 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); +} + |