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