[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / lldb / test / Shell / ExecControl / StopHook / Inputs / stop-hook.c
blob025727aec5822a67f2cf3dc0418e729933763ce2
1 #include <stdio.h>
2 #include <stdlib.h>
4 int a(int);
5 int b(int);
6 int c(int);
8 int a(int val)
10 if (val <= 1)
11 return b(val);
12 else if (val >= 3)
13 return c(val);
15 return val;
18 int b(int val)
20 int rc = c(val);
21 void *ptr = malloc(1024);
22 if (!ptr) // Set breakpoint here to test target stop-hook.
23 return -1;
24 else
25 printf("ptr=%p\n", ptr); // We should stop here after stepping.
26 return rc; // End of the line range for which stop-hook is to be run.
29 int c(int val)
31 return val + 3;
34 int main (int argc, char const *argv[])
36 int A1 = a(1);
37 printf("a(1) returns %d\n", A1);
39 int C2 = c(2); // Another breakpoint which is outside of the stop-hook range.
40 printf("c(2) returns %d\n", C2);
42 int A3 = a(3);
43 printf("a(3) returns %d\n", A3);
45 return 0;