[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:
Tom de Vries
2023-06-03 22:43:57 +02:00
parent 6d280fed3d
commit 9e92dbaa0c

View File

@@ -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);