diff options
-rw-r--r-- | gdb/ChangeLog | 3 | ||||
-rw-r--r-- | gdb/x86-64-tdep.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8409294..4b267bd 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,8 @@ 2003-09-27 Mark Kettenis <kettenis@gnu.org> + * x86-64-tdep.c (x86_64_store_return_value): Remove spurious + whitespace. + * i386-tdep.c (i386_num_register_names, i386_num_mmx_regs): Initialize using ARRAY_SIZE. diff --git a/gdb/x86-64-tdep.c b/gdb/x86-64-tdep.c index e855503..038ebd2 100644 --- a/gdb/x86-64-tdep.c +++ b/gdb/x86-64-tdep.c @@ -757,7 +757,7 @@ x86_64_store_return_value (struct type *type, struct regcache *regcache, int len = TYPE_LENGTH (type); /* First handle long doubles. */ - if (TYPE_CODE_FLT == TYPE_CODE (type) && len == 16) + if (TYPE_CODE_FLT == TYPE_CODE (type) && len == 16) { ULONGEST fstat; char buf[FPU_REG_RAW_SIZE]; |