[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / lldb / packages / Python / lldbsuite / test / commands / target / stop-hooks / main.c
blobd08ad14776b5adc373d275845484097067982fde
1 #include <stdio.h>
3 static int g_var = 0;
5 int step_out_of_me()
7 return g_var; // Set a breakpoint here and step out.
10 int
11 main()
13 return step_out_of_me();