aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/unwind/zeroth_frame/main.c
blob: 5886846e83580825668962b3affc6029789d3d68 (plain)
1
2
3
4
5
6
7
8
void func_inner() {
    int a = 1;  // Set breakpoint 1 here
}

int main() {
    func_inner();
    return 0; // Set breakpoint 2 here
}