1int k = 1;
2
3int bar() {
4 return 0;
5}
6
7int foo() {
8 return bar();
9}
10
11int main() {
12 // Control flow to create basic block sections.
13 if (k)
14 foo();
15 else
16 bar();
17 return 0;
18}
19

source code of lldb/test/Shell/Unwind/Inputs/basic-block-sections.c