summaryrefslogtreecommitdiffstats
path: root/gdb/findvar.c
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2000-03-31 22:04:50 +0000
committerMark Kettenis <kettenis@gnu.org>2000-03-31 22:04:50 +0000
commit3956bd70950818503ce1db52e03f2438bf678509 (patch)
tree9395dbdc4811a362ddcbe2616d7115ba345cd71f /gdb/findvar.c
parent907f17909579cdf9c4bd44fef3266b61940eedb2 (diff)
downloadppe42-binutils-3956bd70950818503ce1db52e03f2438bf678509.tar.gz
ppe42-binutils-3956bd70950818503ce1db52e03f2438bf678509.zip
2000-03-29 Mark Kettenis <kettenis@gnu.org>
* findvar.c (extract_floating): Remove reference to TARGET_EXTRACT_FLOATING. (store_floating): Remove reference to TARGET_STORE_FLOATING.
Diffstat (limited to 'gdb/findvar.c')
-rw-r--r--gdb/findvar.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/findvar.c b/gdb/findvar.c
index f7e01cc864..98a7133b79 100644
--- a/gdb/findvar.c
+++ b/gdb/findvar.c
@@ -289,10 +289,6 @@ extract_floating (void *addr, int 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);
@@ -333,10 +329,6 @@ store_floating (void *addr, int len, DOUBLEST 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);
OpenPOWER on IntegriCloud