mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 02:24:17 +08:00
2000-12-08 Michael Snyder <msnyder@mvstp600e.cygnus.com>
* alpha-tdep.c: Fix typo in comment. * dbxread.c: Fix typo in comment. * fr30-tdep.c: Fix typo: newline missing after comment. * mcore-tdep.c: Fix typo in comment.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
2000-12-08 Michael Snyder <msnyder@mvstp600e.cygnus.com>
|
||||||
|
|
||||||
|
* alpha-tdep.c: Fix typo in comment.
|
||||||
|
* dbxread.c: Fix typo in comment.
|
||||||
|
* fr30-tdep.c: Fix typo: newline missing after comment.
|
||||||
|
* mcore-tdep.c: Fix typo in comment.
|
||||||
|
|
||||||
2000-12-07 J.T. Conklin <jtc@redback.com>
|
2000-12-07 J.T. Conklin <jtc@redback.com>
|
||||||
|
|
||||||
* gdbserver/low-hppabsd.c (buf2, environ, quit, quit_flag):
|
* gdbserver/low-hppabsd.c (buf2, environ, quit, quit_flag):
|
||||||
|
@ -1164,8 +1164,8 @@ alpha_pop_frame (void)
|
|||||||
LENIENT, then we must skip everything which is involved in setting
|
LENIENT, then we must skip everything which is involved in setting
|
||||||
up the frame (it's OK to skip more, just so long as we don't skip
|
up the frame (it's OK to skip more, just so long as we don't skip
|
||||||
anything which might clobber the registers which are being saved.
|
anything which might clobber the registers which are being saved.
|
||||||
Currently we must not skip more on the alpha, but we might the lenient
|
Currently we must not skip more on the alpha, but we might need the
|
||||||
stuff some day. */
|
lenient stuff some day. */
|
||||||
|
|
||||||
CORE_ADDR
|
CORE_ADDR
|
||||||
alpha_skip_prologue (CORE_ADDR pc, int lenient)
|
alpha_skip_prologue (CORE_ADDR pc, int lenient)
|
||||||
|
@ -788,7 +788,7 @@ static int symbuf_end;
|
|||||||
completed after all the stabs are read. */
|
completed after all the stabs are read. */
|
||||||
struct cont_elem
|
struct cont_elem
|
||||||
{
|
{
|
||||||
/* sym and stabsstring for continuing information in cfront */
|
/* sym and stabstring for continuing information in cfront */
|
||||||
struct symbol *sym;
|
struct symbol *sym;
|
||||||
char *stabs;
|
char *stabs;
|
||||||
/* state dependencies (statics that must be preserved) */
|
/* state dependencies (statics that must be preserved) */
|
||||||
|
@ -476,10 +476,11 @@ fr30_init_extra_frame_info (struct frame_info *fi)
|
|||||||
fi->frame = read_register (fi->framereg);
|
fi->frame = read_register (fi->framereg);
|
||||||
else
|
else
|
||||||
/* not the innermost frame */
|
/* not the innermost frame */
|
||||||
/* If we have an FP, the callee saved it. */ if (fi->framereg == FP_REGNUM)
|
/* If we have an FP, the callee saved it. */
|
||||||
|
if (fi->framereg == FP_REGNUM)
|
||||||
if (fi->next->fsr.regs[fi->framereg] != 0)
|
if (fi->next->fsr.regs[fi->framereg] != 0)
|
||||||
fi->frame = read_memory_integer (fi->next->fsr.regs[fi->framereg],
|
fi->frame = read_memory_integer (fi->next->fsr.regs[fi->framereg], 4);
|
||||||
4);
|
|
||||||
/* Calculate actual addresses of saved registers using offsets determined
|
/* Calculate actual addresses of saved registers using offsets determined
|
||||||
by fr30_scan_prologue. */
|
by fr30_scan_prologue. */
|
||||||
for (reg = 0; reg < NUM_REGS; reg++)
|
for (reg = 0; reg < NUM_REGS; reg++)
|
||||||
|
@ -217,7 +217,7 @@ analyze_dummy_frame (CORE_ADDR pc, CORE_ADDR frame)
|
|||||||
return dummy;
|
return dummy;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Function prologues on the Motorol MCore processors consist of:
|
/* Function prologues on the Motorola MCore processors consist of:
|
||||||
|
|
||||||
- adjustments to the stack pointer (r1 used as scratch register)
|
- adjustments to the stack pointer (r1 used as scratch register)
|
||||||
- store word/multiples that use r0 as the base address
|
- store word/multiples that use r0 as the base address
|
||||||
|
Reference in New Issue
Block a user