1 // RUN: %clangxx -target x86_64-pc-linux -gsplit-dwarf -g -fsplit-dwarf-inlining \
3 // RUN: %lldb %t -o "breakpoint set -n foo" -b | FileCheck %s
5 // CHECK: Breakpoint 1: 2 locations
7 __attribute__((always_inline
)) int foo(int x
) { return x
; }
8 int bar(int x
) { return foo(x
); }