[09/10,gdb/tdep] Fix typo in debug message

Message ID 20230602155639.28245-10-tdevries@suse.de
State Committed
Headers
Series Fix typos and misspellings |

Commit Message

Tom de Vries June 2, 2023, 3:56 p.m. UTC
  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".
---
 gdb/microblaze-tdep.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/gdb/microblaze-tdep.c b/gdb/microblaze-tdep.c
index 723dc7cde98..f254a54305c 100644
--- a/gdb/microblaze-tdep.c
+++ b/gdb/microblaze-tdep.c
@@ -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.  */