xref: /llvm-project/lldb/test/Shell/SymbolFile/DWARF/x86/split-dwarf-inlining.cpp (revision 8a64d80a959bf2844df33f9112e456f33de7b468)
1 // RUN: %clangxx -target x86_64-pc-linux -gsplit-dwarf -g -fsplit-dwarf-inlining \
2 // RUN:   -c %s -o %t
3 // RUN: %lldb %t -o "breakpoint set -n foo" -b | FileCheck %s
4 
5 // CHECK: Breakpoint 1: 2 locations
6 
foo(int x)7 __attribute__((always_inline)) int foo(int x) { return x; }
bar(int x)8 int bar(int x) { return foo(x); }
9