[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>
This commit is contained in:
parent
2242afe896
commit
343704a6d7
1 changed files with 1 additions and 1 deletions
|
@ -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. */
|
||||
|
|
Loading…
Add table
Reference in a new issue