Debug C by gdb shows information about inline function is different

43 Views Asked by At

I debug for a C program by gdb. When stepping in a normal function, the command "info stack" will show information about that function and the main function information (where the normal function is called). But when stepping in an inline function, the command "info stack" only shows the information about the inline function. Is this a feature or limited of the gdb?

I expected that the command "info stack" will show full information when stepping an inline function

0

There are 0 best solutions below