mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-27 01:28:46 +00:00
import gdb-1999-09-08 snapshot
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user