aboutsummaryrefslogtreecommitdiff
path: root/gdb/macrotab.c
diff options
context:
space:
mode:
authormatt rice <ratmice@gmail.com>2011-07-21 15:13:30 +0000
committermatt rice <ratmice@gmail.com>2011-07-21 15:13:30 +0000
commit9b158ba08eb1ad14dc2324b8391263b228fa928a (patch)
tree29747b586e1e18155aaf1ce9de26781e9468e1ba /gdb/macrotab.c
parentd17b6f81012b6844de08934193fe7cb7db8cbd5f (diff)
PR macros/12999
* macrotab.h (macro_callback_fn): Add new arguments to callback. * macrotab.c (foreach_macro): Ditto. (foreach_macro_in_scope): Ditto. * macrocmd.c (print_macro_callback): New function. (info_macro_command): Move some code to print_macro_definition. (print_macro_definition): New function. (print_one_macro): Add new arguments to callback. testsuite/ * gdb.base/info-macros.c: New test sources. * gdb.base/info-macros.exp: New tests. docs/ * gdb.texinfo (Macros): Add info definitions and info macros commands. Update text and cindex entries for info macro command.
Diffstat (limited to 'gdb/macrotab.c')
-rw-r--r--gdb/macrotab.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/macrotab.c b/gdb/macrotab.c
index cba285dc9d..efcf83563e 100644
--- a/gdb/macrotab.c
+++ b/gdb/macrotab.c
@@ -913,7 +913,8 @@ foreach_macro (splay_tree_node node, void *arg)
struct macro_key *key = (struct macro_key *) node->key;
struct macro_definition *def = (struct macro_definition *) node->value;
- (*datum->fn) (key->name, def, datum->user_data);
+ (*datum->fn) (key->name, def, key->start_file, key->start_line,
+ datum->user_data);
return 0;
}
@@ -945,7 +946,8 @@ foreach_macro_in_scope (splay_tree_node node, void *info)
&& (!key->end_file
|| compare_locations (key->end_file, key->end_line,
datum->file, datum->line) >= 0))
- (*datum->fn) (key->name, def, datum->user_data);
+ (*datum->fn) (key->name, def, key->start_file, key->start_line,
+ datum->user_data);
return 0;
}