aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/disasm.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 38a3beb..67fbf93 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
2017-02-02 Pedro Alves <palves@redhat.com>
+ * disasm.h (gdb_pretty_print_disassembler): Tweak intro comment.
+
+2017-02-02 Pedro Alves <palves@redhat.com>
+
* disasm.c (gdb_pretty_print_insn): Rename to ...
(gdb_pretty_print_disassembler::pretty_print_insn): ... this.
Remove gdbarch parameter. Adapt to clear the object's buffers
diff --git a/gdb/disasm.h b/gdb/disasm.h
index 385cae6..42c1f3a 100644
--- a/gdb/disasm.h
+++ b/gdb/disasm.h
@@ -97,7 +97,7 @@ extern void gdb_disassembly (struct gdbarch *gdbarch, struct ui_out *uiout,
extern int gdb_print_insn (struct gdbarch *gdbarch, CORE_ADDR memaddr,
struct ui_file *stream, int *branch_delay_insns);
-/* Class used to pretty-print an instruction. */
+/* Class used to pretty-print instructions. */
class gdb_pretty_print_disassembler
{