From b270168504d91292ec7089056ce32c68ad6c28a7 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 8 Oct 2020 19:41:45 -0600 Subject: Style more output of "disassemble" command I noticed a couple of spots where the "disassemble" could style its output, but currently does not. This patch adds styling to the function name at the start of the disassembly, and any addresses printed there. gdb/ChangeLog 2020-10-08 Tom Tromey * cli/cli-cmds.c (print_disassembly): Style function name and addresses. Add _() wrappers. gdb/testsuite/ChangeLog 2020-10-08 Tom Tromey * gdb.base/style.exp: Check that "main"'s name is styled. --- gdb/testsuite/gdb.base/style.exp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'gdb/testsuite/gdb.base') diff --git a/gdb/testsuite/gdb.base/style.exp b/gdb/testsuite/gdb.base/style.exp index bfd2614..ef9f7c8 100644 --- a/gdb/testsuite/gdb.base/style.exp +++ b/gdb/testsuite/gdb.base/style.exp @@ -91,9 +91,12 @@ save_vars { env(TERM) } { "Defined at $base_file_expr:$macro_line\r\n#define SOME_MACRO 23" } + set main [style main function] set func [style some_called_function function] # Somewhere should see the call to the function. - gdb_test "disassemble main" "[style $hex address].*$func.*" + gdb_test "disassemble main" \ + [concat "Dump of assembler code for function $main:.*" \ + "[style $hex address].*$func.*"] set ifield [style int_field variable] set sfield [style string_field variable] -- cgit v1.1