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
7__attribute__((always_inline)) int foo(int x) { return x; }
8int bar(int x) { return foo(x); }
9

source code of lldb/test/Shell/SymbolFile/DWARF/x86/split-dwarf-inlining.cpp