X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Farm-tdep.c;h=d38f2c82168736fae21441bac360cfee48d72d31;hb=3b2ca8248cae742c00cb4e94138edf1403d43d47;hp=46b7888fc99eae47c3047e426ffe11d2d031f8f8;hpb=14ad9311720fc17bd646b2ff08483fe60a489959;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index 46b7888fc9..d38f2c8216 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -30,7 +30,7 @@ #include "disasm.h" #include "regcache.h" #include "reggroups.h" -#include "doublest.h" +#include "target-float.h" #include "value.h" #include "arch-utils.h" #include "osabi.h" @@ -7902,8 +7902,8 @@ arm_extract_return_value (struct type *type, struct regcache *regs, bfd_byte tmpbuf[FP_REGISTER_SIZE]; regcache_cooked_read (regs, ARM_F0_REGNUM, tmpbuf); - convert_typed_floating (tmpbuf, arm_ext_type (gdbarch), - valbuf, type); + target_float_convert (tmpbuf, arm_ext_type (gdbarch), + valbuf, type); } break; @@ -8107,7 +8107,7 @@ arm_store_return_value (struct type *type, struct regcache *regs, { case ARM_FLOAT_FPA: - convert_typed_floating (valbuf, type, buf, arm_ext_type (gdbarch)); + target_float_convert (valbuf, type, buf, arm_ext_type (gdbarch)); regcache_cooked_write (regs, ARM_F0_REGNUM, buf); break;