3 // This simple program is to test the lldb Python API SBSymbolContext.
4 // When stopped on a frame, we can get the symbol context using the SBFrame API
5 // SBFrame.GetSymbolContext().
28 return val
+ 3; // Find the line number of function "c" here.
31 int main (int argc
, char const *argv
[])
33 int A1
= a(1); // a(1) -> b(1) -> c(1)
34 printf("a(1) returns %d\n", A1
);
36 int B2
= b(2); // b(2) -> c(2)
37 printf("b(2) returns %d\n", B2
);
39 int A3
= a(3); // a(3) -> c(3)
40 printf("a(3) returns %d\n", A3
);