aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2002-08-09 00:45:10 +0000
committerKevin Buettner <kevinb@redhat.com>2002-08-09 00:45:10 +0000
commitb30590dca40a659df9fa21c7db85e596639b446a (patch)
tree36f5ed04037ed5507feea6344be4e50cf19edfab /gdb
parent2bbd9c2554941f95f8f58d8c61dd234e421d074c (diff)
downloadgdb-b30590dca40a659df9fa21c7db85e596639b446a.zip
gdb-b30590dca40a659df9fa21c7db85e596639b446a.tar.gz
gdb-b30590dca40a659df9fa21c7db85e596639b446a.tar.bz2
* doublest.c (store_floating): Avoid floatformat_from_doublest()
assertion failure by returning early after a warning.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/doublest.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index d567072..496d06f 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
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.
(mips_frame_init_saved_regs): New function.
(mips_gdbarch_init): Setup FRAME_INIT_SAVED_REGS method.
diff --git a/gdb/doublest.c b/gdb/doublest.c
index a4b4b76..6e96d78 100644
--- a/gdb/doublest.c
+++ b/gdb/doublest.c
@@ -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);