diff options
author | Michael Snyder <msnyder@vmware.com> | 2006-03-17 00:14:24 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2006-03-17 00:14:24 +0000 |
commit | cf913f371edae118f239e5bce6b31f2c1a3fe659 (patch) | |
tree | 9cb7513f690aecc3f3d6ccc2465b35ea330ea653 /gdb/i386-tdep.c | |
parent | 036952e0681778e9a277f761efde310464956df1 (diff) | |
download | gdb-cf913f371edae118f239e5bce6b31f2c1a3fe659.zip gdb-cf913f371edae118f239e5bce6b31f2c1a3fe659.tar.gz gdb-cf913f371edae118f239e5bce6b31f2c1a3fe659.tar.bz2 |
2006-03-16 Michael Snyder <msnyder@redhat.com>
* i386-tdep.c (i386_push_dummy_call): Fix typo in comment.
Diffstat (limited to 'gdb/i386-tdep.c')
-rw-r--r-- | gdb/i386-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/i386-tdep.c b/gdb/i386-tdep.c index 036d1b6..1a67849 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); } |