2006-03-16 Michael Snyder <msnyder@redhat.com>
authorMichael Snyder <msnyder@vmware.com>
Fri, 17 Mar 2006 00:14:24 +0000 (00:14 +0000)
committerMichael Snyder <msnyder@vmware.com>
Fri, 17 Mar 2006 00:14:24 +0000 (00:14 +0000)
* i386-tdep.c (i386_push_dummy_call): Fix typo in comment.

gdb/ChangeLog
gdb/i386-tdep.c

index 8a82e5c9c70165a3518a7cf00647c295b6af90fa..a7bbf233dd94bf5275d18f08d517bbeaa7740534 100644 (file)
@@ -1,3 +1,7 @@
+2006-03-16  Michael Snyder  <msnyder@redhat.com>
+
+       * i386-tdep.c (i386_push_dummy_call): Fix typo in comment.
+
 2006-03-15  Kevin Buettner  <kevinb@redhat.com>
 
        * frv-linux-tdep.c (gdbcore.h, regcache.h, regset.h, gdb_string.h):
index 036d1b6217540ce20986e82071bb8b29e8b2b34c..1a67849df09fea33714991648e3ebc55228a2d49 100644 (file)
@@ -1296,7 +1296,7 @@ i386_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
         multiple of [32-bit] words.  This may require tail padding,
         depending on the size of the argument."
 
-        This makes sure the stack says word-aligned.  */
+        This makes sure the stack stays word-aligned.  */
       sp -= (len + 3) & ~3;
       write_memory (sp, value_contents_all (args[i]), len);
     }