diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/i387-tdep.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e793cb4..ecf0d57 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2001-07-04 Mark Kettenis <kettenis@gnu.org> + + * i387-tdep.c (print_i387_value): Add extra space after final full + stop in comment. + 2001-07-04 Andrew Cagney <ac131313@redhat.com> * TODO (5.1): Update. Doco changes committed. diff --git a/gdb/i387-tdep.c b/gdb/i387-tdep.c index cc403fc..71cb030c 100644 --- a/gdb/i387-tdep.c +++ b/gdb/i387-tdep.c @@ -168,7 +168,7 @@ print_i387_value (char *raw) gdb_assert (TARGET_LONG_DOUBLE_FORMAT == &floatformat_i387_ext); /* Take care of the padding. FP reg is 80 bits. The same value in - memory is 96 bits. */ + memory is 96 bits. */ gdb_assert (FPU_REG_RAW_SIZE < len); memcpy (&tmp, raw, FPU_REG_RAW_SIZE); memset (&tmp + FPU_REG_RAW_SIZE, 0, len - FPU_REG_RAW_SIZE); |