diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-04-21 04:28:08 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-04-21 04:28:08 +0000 |
commit | 96f7edbde8d07b273df95d3ae4c49e31d5cf8e29 (patch) | |
tree | e08b0269416bf3f1020c1d39cec4bb6a9e3bfb3f /gdb/defs.h | |
parent | 71b4de6fb868f6da4b0e99aad7547874cab797a5 (diff) | |
download | gdb-96f7edbde8d07b273df95d3ae4c49e31d5cf8e29.zip gdb-96f7edbde8d07b273df95d3ae4c49e31d5cf8e29.tar.gz gdb-96f7edbde8d07b273df95d3ae4c49e31d5cf8e29.tar.bz2 |
* printcmd.c (print_command_1): Annotate the top-level expressions
that we print.
(print_frame_args): Annotate each argument.
* printcmd.c, defs.h (print_value_flags): New function.
* cp-valprint.c (cp_print_value_fields): Annotate each field.
* valprint.c (val_print_array_elements): Annotate each array element.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -216,7 +216,12 @@ myread PARAMS ((int, char *, int)); extern int query (); +/* Annotation stuff. */ + extern int annotation_level; /* in stack.c */ + +/* in printcmd.c */ +extern void print_value_flags PARAMS ((struct type *)); extern void begin_line PARAMS ((void)); |