forked from Imagelibrary/binutils-gdb
[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>
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user