blob: edf956d32116defa92c44d1b34e11c3a27fe15f7 [file] [log] [blame]
Alexey Samsonov897f2cf2013-02-08 14:34:33 +00001#include "dwarfdump-inl-test.h"
2static inline int inlined_f() {
3 volatile int x = inlined_g();
4 return x;
5}
6
7int main() {
8 return inlined_f();
9}
10
11// Built with Clang 3.2
12// $ mkdir -p /tmp/dbginfo
13// $ cp dwarfdump-inl-test.* /tmp/dbginfo
14// $ cd /tmp/dbginfo
15// $ clang++ -O2 -gline-tables-only -fsanitize=address -fPIC -shared dwarfdump-inl-test.cc -o <output>
Will Dietzb67a7142013-10-30 20:27:17 +000016//
17// And similarly with with gcc 4.8.2:
18// $ gcc dwarfdump-inl-test.cc -o dwarfdump-inl-test.high_pc.elf-x86-64 -g -O2 -fPIC -shared