projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d280fe
)
[gdbserver] Fix typo in debug message
author
Tom de Vries
<tdevries@suse.de>
Sat, 3 Jun 2023 20:43:57 +0000
(22:43 +0200)
committer
Tom de Vries
<tdevries@suse.de>
Sat, 3 Jun 2023 20:43:57 +0000
(22:43 +0200)
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>
gdbserver/linux-aarch64-low.cc
patch
|
blob
|
history
diff --git
a/gdbserver/linux-aarch64-low.cc
b/gdbserver/linux-aarch64-low.cc
index 2ed6e95562c553a5c02134ef70342dcc2a2cd18b..2474a000ea301c459e03a50100622ed0ecd4f5f2 100644
(file)
--- 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 instruc
t
ions at %s",
len, paddress (buildaddr));
append_insns (&buildaddr, len, start);