[gdbserver] Fix typo in debug message
authorTom de Vries <tdevries@suse.de>
Sat, 3 Jun 2023 20:43:57 +0000 (22:43 +0200)
committerTom 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

index 2ed6e95562c553a5c02134ef70342dcc2a2cd18b..2474a000ea301c459e03a50100622ed0ecd4f5f2 100644 (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);