Revert "[HLSL] Add `Increment`/`DecrementCounter` methods to structured buffers ...
[llvm-project.git] / llvm / test / DebugInfo / Inputs / dwarfdump-inl-test.cc
blobedf956d32116defa92c44d1b34e11c3a27fe15f7
1 #include "dwarfdump-inl-test.h"
2 static inline int inlined_f() {
3 volatile int x = inlined_g();
4 return x;
7 int main() {
8 return inlined_f();
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>
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