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