2000-12-08 Michael Snyder <msnyder@mvstp600e.cygnus.com>
authorMichael Snyder <msnyder@vmware.com>
Fri, 8 Dec 2000 19:59:25 +0000 (19:59 +0000)
committerMichael Snyder <msnyder@vmware.com>
Fri, 8 Dec 2000 19:59:25 +0000 (19:59 +0000)
        * 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.

gdb/ChangeLog
gdb/alpha-tdep.c
gdb/dbxread.c
gdb/fr30-tdep.c
gdb/mcore-tdep.c

index fbbc3e611512caf1cd1237912044468fcf90b500..3a9447891fe09e461da93f8fbbfed98cbbf45cf2 100644 (file)
@@ -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>
 
        * gdbserver/low-hppabsd.c (buf2, environ, quit, quit_flag):
index 45c4bc0f7aa3f7dd1fabb72370570ab8a0911804..f54a11d02fd456f7e6e8e946e339eae731bdc9d7 100644 (file)
@@ -1164,8 +1164,8 @@ alpha_pop_frame (void)
    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.  */
+   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 e15539a557226ab0aa603cb63cb72ef0b00d419c..c8f9cfe1be3d5342b16cfc6d314b4fb5b97f0652 100644 (file)
@@ -788,7 +788,7 @@ static int symbuf_end;
    completed after all the stabs are read.  */
 struct cont_elem
   {
-    /* sym and stabsstring for continuing information in cfront */
+    /* sym and stabstring for continuing information in cfront */
     struct symbol *sym;
     char *stabs;
     /* state dependencies (statics that must be preserved) */
index c6a4b123ffc14e1315dd5bb379b4152d2ebad37e..c06542adf968743232094f1c55b34d3c77157a3f 100644 (file)
@@ -476,10 +476,11 @@ fr30_init_extra_frame_info (struct frame_info *fi)
     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);
+    /* 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 eedd1a15cd4bf9812e202d6d4bd4080ce6fbaf44..c99a2de34f75b6d3b7f4bff03b52c6001eef5f77 100644 (file)
@@ -217,7 +217,7 @@ analyze_dummy_frame (CORE_ADDR pc, CORE_ADDR frame)
   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)
    - store word/multiples that use r0 as the base address
This page took 0.031253 seconds and 4 git commands to generate.