import gdb-1999-09-08 snapshot

This commit is contained in:
Stan Shebs
1999-09-09 00:02:17 +00:00
parent 325188ecac
commit d4f3574e77
201 changed files with 8614 additions and 4843 deletions

View File

@@ -328,6 +328,10 @@ extract_floating (addr, len)
else
floatformat_to_doublest (TARGET_LONG_DOUBLE_FORMAT, addr, &dretval);
}
#ifdef TARGET_EXTRACT_FLOATING
else if (TARGET_EXTRACT_FLOATING (addr, len, &dretval))
return dretval;
#endif
else
{
error ("Can't deal with a floating point number of %d bytes.", len);
@@ -371,6 +375,10 @@ store_floating (addr, len, val)
else
floatformat_from_doublest (TARGET_LONG_DOUBLE_FORMAT, &val, addr);
}
#ifdef TARGET_STORE_FLOATING
else if (TARGET_STORE_FLOATING (addr, len, val))
return;
#endif
else
{
error ("Can't deal with a floating point number of %d bytes.", len);