From: Michael Snyder Date: Fri, 17 Mar 2006 00:14:24 +0000 (+0000) Subject: 2006-03-16 Michael Snyder X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cf913f371edae118f239e5bce6b31f2c1a3fe659;p=binutils-gdb.git 2006-03-16 Michael Snyder * i386-tdep.c (i386_push_dummy_call): Fix typo in comment. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8a82e5c9c70..a7bbf233dd9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2006-03-16 Michael Snyder + + * i386-tdep.c (i386_push_dummy_call): Fix typo in comment. + 2006-03-15 Kevin Buettner * frv-linux-tdep.c (gdbcore.h, regcache.h, regset.h, gdb_string.h): diff --git a/gdb/i386-tdep.c b/gdb/i386-tdep.c index 036d1b62175..1a67849df09 100644 --- a/gdb/i386-tdep.c +++ b/gdb/i386-tdep.c @@ -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); }