diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-09-30 10:29:00 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-09-30 10:29:00 +0000 |
commit | e9e07ba6db5fb651b153da7bde8a6ee4509172f0 (patch) | |
tree | 7745602161672924ea8e9d06ef6ecebfe450ecf2 /gdb/stack.h | |
parent | cd2effb255e6018687256a2d10072a1e4da0c6c5 (diff) | |
download | gdb-e9e07ba6db5fb651b153da7bde8a6ee4509172f0.zip gdb-e9e07ba6db5fb651b153da7bde8a6ee4509172f0.tar.gz gdb-e9e07ba6db5fb651b153da7bde8a6ee4509172f0.tar.bz2 |
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.
Diffstat (limited to 'gdb/stack.h')
-rw-r--r-- | gdb/stack.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/stack.h b/gdb/stack.h index 5e874b4..16fc819c 100644 --- a/gdb/stack.h +++ b/gdb/stack.h @@ -22,10 +22,8 @@ void select_frame_command (char *level_exp, int from_tty); -/* Attempt to obtain the FUNNAME and FUNLANG of the function corresponding - to FRAME. */ void find_frame_funname (struct frame_info *frame, char **funname, - enum language *funlang); + enum language *funlang, struct symbol **funcp); typedef void (*iterate_over_block_arg_local_vars_cb) (const char *symbol_print_name, struct symbol *sym, |