[gdb/tdep] 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)
In microblaze_analyze_prologue in gdb/microblaze-tdep.c I came across:
...
  microblaze_debug ("got addi r1,r1,%d; contnuing\n", imm);
...

Fix this by using "continuing".

Reviewed-By: Tom Tromey <tom@tromey.com>
gdb/microblaze-tdep.c

index 723dc7cde98e43b547c10d099467498331fb85d7..f254a54305c3541ff86686f89dec2272b4dcfd3c 100644 (file)
@@ -247,7 +247,7 @@ microblaze_analyze_prologue (struct gdbarch *gdbarch, CORE_ADDR pc,
         only instructions in the prologue.  */
       if (IS_UPDATE_SP(op, rd, ra))
        {
-         microblaze_debug ("got addi r1,r1,%d; contnuing\n", imm);
+         microblaze_debug ("got addi r1,r1,%d; continuing\n", imm);
          if (cache->framesize)
            break;      /* break if framesize already computed.  */
          cache->framesize = -imm; /* stack grows towards low memory.  */