forked from Imagelibrary/binutils-gdb
gdb/
Fix printing parameters of inlined functions. * ada-lang.c (is_known_support_routine) (ada_unhandled_exception_name_addr_from_raise): Provide NULL parameter for find_frame_funname. * python/py-frame.c (frapy_name): Likewise. * stack.c (find_frame_funname): New parameter funcp. Update the function comment. Fill it in. (print_frame): New variable func. Initialize it by find_frame_funname. Print arguments only if FUNC is not NULL. Use FUNC as the parameter of print_args_stub. * stack.h (find_frame_funname): New parameter funcp. Remove the function declaration comment. gdb/testsuite/ Fix printing parameters of inlined functions. * gdb.dwarf2/dw2-inline-param.exp: New file. * gdb.dwarf2/dw2-inline-param-main.c: New file. * gdb.dwarf2/dw2-inline-param.S: New file.
This commit is contained in:
@@ -10325,7 +10325,7 @@ is_known_support_routine (struct frame_info *frame)
|
||||
|
||||
/* Check whether the function is a GNAT-generated entity. */
|
||||
|
||||
find_frame_funname (frame, &func_name, &func_lang);
|
||||
find_frame_funname (frame, &func_name, &func_lang, NULL);
|
||||
if (func_name == NULL)
|
||||
return 1;
|
||||
|
||||
@@ -10393,7 +10393,7 @@ ada_unhandled_exception_name_addr_from_raise (void)
|
||||
char *func_name;
|
||||
enum language func_lang;
|
||||
|
||||
find_frame_funname (fi, &func_name, &func_lang);
|
||||
find_frame_funname (fi, &func_name, &func_lang, NULL);
|
||||
if (func_name != NULL
|
||||
&& strcmp (func_name, exception_info->catch_exception_sym) == 0)
|
||||
break; /* We found the frame we were looking for... */
|
||||
|
||||
Reference in New Issue
Block a user