1int func_1() { return 1; }
2
3int func_2() {
4 func_1(); // breakpoint_0
5 return 1 + func_1(); // breakpoint_1
6}
7
8int main(int argc, char const *argv[]) {
9 func_2(); // Start from here
10 return 0;
11}
12

source code of lldb/test/API/functionalities/breakpoint/thread_plan_user_breakpoint/main.cpp