mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 20:49:43 +00:00
* doublest.c (store_floating): Avoid floatformat_from_doublest()
assertion failure by returning early after a warning.
This commit is contained in:
parent
2bbd9c2554
commit
b30590dca4
@ -1,3 +1,8 @@
|
||||
2002-08-08 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* doublest.c (store_floating): Avoid floatformat_from_doublest()
|
||||
assertion failure by returning early after a warning.
|
||||
|
||||
2002-08-08 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* mips-tdep.c (mips_find_saved_regs): Make static.
|
||||
|
@ -681,6 +681,7 @@ store_floating (void *addr, int len, DOUBLEST val)
|
||||
{
|
||||
warning ("Can't store a floating-point number of %d bytes.", len);
|
||||
memset (addr, 0, len);
|
||||
return;
|
||||
}
|
||||
|
||||
floatformat_from_doublest (fmt, &val, addr);
|
||||
|
Loading…
Reference in New Issue
Block a user