From 324b1c67060b43281e7ffd2ba377389055ebb6d7 Mon Sep 17 00:00:00 2001 From: devans Date: Wed, 18 Mar 2009 16:38:17 +0000 Subject: [PATCH] * expprint.c (dump_raw_expression): Print note if non-NULL. --- gdb/ChangeLog | 2 ++ gdb/expprint.c | 7 ++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index abaa78a299..44edfebd3f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2009-03-18 Doug Evans + * expprint.c (dump_raw_expression): Print note if non-NULL. + * printcmd.c (display_uses_solib_p): Redo loop, scan element list backwards. diff --git a/gdb/expprint.c b/gdb/expprint.c index 89bae03bad..d7fac86c67 100644 --- a/gdb/expprint.c +++ b/gdb/expprint.c @@ -802,6 +802,9 @@ op_name_standard (enum exp_opcode opcode) } } +/* Print a raw dump of expression EXP to STREAM. + NOTE, if non-NULL, is printed as extra explanatory text. */ + void dump_raw_expression (struct expression *exp, struct ui_file *stream, char *note) @@ -813,7 +816,9 @@ dump_raw_expression (struct expression *exp, struct ui_file *stream, fprintf_filtered (stream, "Dump of expression @ "); gdb_print_host_address (exp, stream); - fprintf_filtered (stream, "'\n\tLanguage %s, %d elements, %ld bytes each.\n", + if (note) + fprintf_filtered (stream, ", %s:", note); + fprintf_filtered (stream, "\n\tLanguage %s, %d elements, %ld bytes each.\n", exp->language_defn->la_name, exp->nelts, (long) sizeof (union exp_element)); fprintf_filtered (stream, "\t%5s %20s %16s %s\n", "Index", "Opcode", -- 2.11.0