diff options
Diffstat (limited to 'gdb/target-float.h')
-rw-r--r-- | gdb/target-float.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/target-float.h b/gdb/target-float.h index 466dd1b5c85..4ac88efb261 100644 --- a/gdb/target-float.h +++ b/gdb/target-float.h @@ -42,6 +42,11 @@ extern void target_float_from_longest (gdb_byte *addr, extern void target_float_from_ulongest (gdb_byte *addr, const struct type *type, ULONGEST val); +extern double target_float_to_host_double (const gdb_byte *addr, + const struct type *type); +extern void target_float_from_host_double (gdb_byte *addr, + const struct type *type, + double val); extern void target_float_convert (const gdb_byte *from, const struct type *from_type, gdb_byte *to, const struct type *to_type); |