* i387-tdep.c (print_i387_value): Add extra space after final full

stop in comment.
This commit is contained in:
Mark Kettenis
2001-07-04 21:14:05 +00:00
parent af6c57eaf6
commit c96646d00b
2 changed files with 6 additions and 1 deletions

View File

@@ -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);