diff options
author | Tom de Vries <tdevries@suse.de> | 2023-06-03 22:43:57 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2023-06-03 22:43:57 +0200 |
commit | 9e92dbaa0cea5b71778f9698f797ad4112421c83 (patch) | |
tree | e8317632d80f1518b774d611f898932d0ea6a78e /gdbserver | |
parent | 6d280fed3d0a1a426216e57e4b52c1fba76f6f63 (diff) | |
download | gdb-9e92dbaa0cea5b71778f9698f797ad4112421c83.zip gdb-9e92dbaa0cea5b71778f9698f797ad4112421c83.tar.gz gdb-9e92dbaa0cea5b71778f9698f797ad4112421c83.tar.bz2 |
[gdbserver] Fix typo in debug message
I noticed in emit_ops_insns in gdbserver/linux-aarch64-low.cc:
...
threads_debug_printf ("Adding %d instrucions at %s",
...
Fix the typo by using "instructions" instead.
Reviewed-By: Tom Tromey <tom@tromey.com>
Diffstat (limited to 'gdbserver')
-rw-r--r-- | gdbserver/linux-aarch64-low.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbserver/linux-aarch64-low.cc b/gdbserver/linux-aarch64-low.cc index 2ed6e95..2474a00 100644 --- a/gdbserver/linux-aarch64-low.cc +++ b/gdbserver/linux-aarch64-low.cc @@ -2521,7 +2521,7 @@ emit_ops_insns (const uint32_t *start, int len) { CORE_ADDR buildaddr = current_insn_ptr; - threads_debug_printf ("Adding %d instrucions at %s", + threads_debug_printf ("Adding %d instructions at %s", len, paddress (buildaddr)); append_insns (&buildaddr, len, start); |