You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
299 B
9 lines
299 B
// RUN: %clangxx -target x86_64-pc-linux -gsplit-dwarf -g -fsplit-dwarf-inlining \
|
|
// RUN: -c %s -o %t
|
|
// RUN: %lldb %t -o "breakpoint set -n foo" -b | FileCheck %s
|
|
|
|
// CHECK: Breakpoint 1: 2 locations
|
|
|
|
__attribute__((always_inline)) int foo(int x) { return x; }
|
|
int bar(int x) { return foo(x); }
|