This is the mail archive of the
gdb-patches@sources.redhat.com
mailing list for the GDB project.
[PATCH] Minor comment / spelling fixes.
- To: gdb-patches at sources dot redhat dot com
- Subject: [PATCH] Minor comment / spelling fixes.
- From: Michael Snyder <msnyder at cygnus dot com>
- Date: Fri, 8 Dec 2000 11:58:58 -0800 (PST)
Miscelaneous...
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.
Index: alpha-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/alpha-tdep.c,v
retrieving revision 1.5
diff -c -3 -p -r1.5 alpha-tdep.c
*** alpha-tdep.c 2000/12/01 00:41:27 1.5
--- alpha-tdep.c 2000/12/08 19:57:22
*************** alpha_pop_frame (void)
*** 1164,1171 ****
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
anything which might clobber the registers which are being saved.
! Currently we must not skip more on the alpha, but we might the lenient
! stuff some day. */
CORE_ADDR
alpha_skip_prologue (CORE_ADDR pc, int lenient)
--- 1164,1171 ----
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
anything which might clobber the registers which are being saved.
! Currently we must not skip more on the alpha, but we might need the
! lenient stuff some day. */
CORE_ADDR
alpha_skip_prologue (CORE_ADDR pc, int lenient)
Index: dbxread.c
===================================================================
RCS file: /cvs/src/src/gdb/dbxread.c,v
retrieving revision 1.9
diff -c -3 -p -r1.9 dbxread.c
*** dbxread.c 2000/09/01 23:45:13 1.9
--- dbxread.c 2000/12/08 19:57:22
*************** static int symbuf_end;
*** 788,794 ****
completed after all the stabs are read. */
struct cont_elem
{
! /* sym and stabsstring for continuing information in cfront */
struct symbol *sym;
char *stabs;
/* state dependencies (statics that must be preserved) */
--- 788,794 ----
completed after all the stabs are read. */
struct cont_elem
{
! /* sym and stabstring for continuing information in cfront */
struct symbol *sym;
char *stabs;
/* state dependencies (statics that must be preserved) */
Index: fr30-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/fr30-tdep.c,v
retrieving revision 1.3
diff -c -3 -p -r1.3 fr30-tdep.c
*** fr30-tdep.c 2000/07/30 01:48:25 1.3
--- fr30-tdep.c 2000/12/08 19:57:22
*************** fr30_init_extra_frame_info (struct frame
*** 476,485 ****
fi->frame = read_register (fi->framereg);
else
/* not the innermost frame */
! /* If we have an FP, the callee saved it. */ if (fi->framereg == FP_REGNUM)
! if (fi->next->fsr.regs[fi->framereg] != 0)
! fi->frame = read_memory_integer (fi->next->fsr.regs[fi->framereg],
! 4);
/* Calculate actual addresses of saved registers using offsets determined
by fr30_scan_prologue. */
for (reg = 0; reg < NUM_REGS; reg++)
--- 476,486 ----
fi->frame = read_register (fi->framereg);
else
/* not the innermost frame */
! /* If we have an FP, the callee saved it. */
! if (fi->framereg == FP_REGNUM)
! if (fi->next->fsr.regs[fi->framereg] != 0)
! fi->frame = read_memory_integer (fi->next->fsr.regs[fi->framereg], 4);
!
/* Calculate actual addresses of saved registers using offsets determined
by fr30_scan_prologue. */
for (reg = 0; reg < NUM_REGS; reg++)
Index: mcore-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/mcore-tdep.c,v
retrieving revision 1.4
diff -c -3 -p -r1.4 mcore-tdep.c
*** mcore-tdep.c 2000/10/30 21:50:57 1.4
--- mcore-tdep.c 2000/12/08 19:57:22
*************** analyze_dummy_frame (CORE_ADDR pc, CORE_
*** 217,223 ****
return dummy;
}
! /* Function prologues on the Motorol MCore processors consist of:
- adjustments to the stack pointer (r1 used as scratch register)
- store word/multiples that use r0 as the base address
--- 217,223 ----
return dummy;
}
! /* Function prologues on the Motorola MCore processors consist of:
- adjustments to the stack pointer (r1 used as scratch register)
- store word/multiples that use r0 as the base address