diff options
author | Tom de Vries <tdevries@suse.de> | 2023-06-03 22:43:57 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2023-06-03 22:43:57 +0200 |
commit | 343704a6d71d8aa44c64e3657e20501eab4d0ea8 (patch) | |
tree | fc545ca5cb7d758b6bad0350e745df6d13d1c5b6 | |
parent | 2242afe89683fc5fada197595c5b78a6620032a8 (diff) | |
download | binutils-343704a6d71d8aa44c64e3657e20501eab4d0ea8.zip binutils-343704a6d71d8aa44c64e3657e20501eab4d0ea8.tar.gz binutils-343704a6d71d8aa44c64e3657e20501eab4d0ea8.tar.bz2 |
[gdb/tdep] Fix typo in debug message
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>
-rw-r--r-- | gdb/microblaze-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/microblaze-tdep.c b/gdb/microblaze-tdep.c index 723dc7c..f254a54 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. */ |