[AMDGPU] Add True16 register classes.
[llvm-project.git] / lldb / test / API / commands / expression / unwind_expression / main.cpp
blob56b06f31eccae930bd182f950324ec0c6415da1c
1 static int static_value = 0;
3 int
4 a_function_to_call()
6 static_value++; // Stop inside the function here.
7 return static_value;
10 int second_function(int x){
11 for(int i=0; i<10; ++i) {
12 a_function_to_call();
14 return x;
17 int main (int argc, char const *argv[])
19 a_function_to_call(); // Set a breakpoint here to get started
20 second_function(1);
21 return 0;