diff options
Diffstat (limited to 'gdb/target-float.h')
-rw-r--r-- | gdb/target-float.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/target-float.h b/gdb/target-float.h index 317e98e..9ea1812 100644 --- a/gdb/target-float.h +++ b/gdb/target-float.h @@ -32,4 +32,16 @@ extern bool target_float_from_string (gdb_byte *addr, const struct type *type, const std::string &string); +extern LONGEST target_float_to_longest (const gdb_byte *addr, + const struct type *type); +extern void target_float_from_longest (gdb_byte *addr, + const struct type *type, + LONGEST val); +extern void target_float_from_ulongest (gdb_byte *addr, + const struct type *type, + ULONGEST val); +extern void target_float_convert (const gdb_byte *from, + const struct type *from_type, + gdb_byte *to, const struct type *to_type); + #endif |