mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-28 06:20:30 +00:00
* doublest.c (store_typed_floating): Don't try to return a value.
Fixes PR gdb/290.
This commit is contained in:
parent
bdc2fc72b3
commit
0b87a11db9
@ -1,3 +1,8 @@
|
||||
2002-02-09 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* doublest.c (store_typed_floating): Don't try to return a value.
|
||||
Fixes PR gdb/290.
|
||||
|
||||
2002-02-08 Jim Blandy <jimb@redhat.com>
|
||||
|
||||
* c-typeprint.c (c_type_print_varspec_suffix): If a function type
|
||||
|
@ -732,9 +732,9 @@ store_typed_floating (void *addr, const struct type *type, DOUBLEST val)
|
||||
memset (addr, 0, TYPE_LENGTH (type));
|
||||
|
||||
if (TYPE_FLOATFORMAT (type) == NULL)
|
||||
return store_floating (addr, TYPE_LENGTH (type), val);
|
||||
|
||||
floatformat_from_doublest (TYPE_FLOATFORMAT (type), &val, addr);
|
||||
store_floating (addr, TYPE_LENGTH (type), val);
|
||||
else
|
||||
floatformat_from_doublest (TYPE_FLOATFORMAT (type), &val, addr);
|
||||
}
|
||||
|
||||
/* Convert a floating-point number of type FROM_TYPE from a
|
||||
|
Loading…
Reference in New Issue
Block a user