X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Ftarget-float.c;h=1bdd3efb69f27b4a0e9e50cf9d7d4ce1a5a96a91;hb=915808f652b63746052b1ef59403650b45a30e4f;hp=caa6943395016cb19e9dcef1a3bdb5375fc1d7bb;hpb=34877895ca38f74ae31bd65a6916560020d9d62b;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/target-float.c b/gdb/target-float.c index caa6943395..1bdd3efb69 100644 --- a/gdb/target-float.c +++ b/gdb/target-float.c @@ -1,6 +1,6 @@ /* Floating point routines for GDB, the GNU debugger. - Copyright (C) 2017-2019 Free Software Foundation, Inc. + Copyright (C) 2017-2020 Free Software Foundation, Inc. This file is part of GDB. @@ -647,8 +647,8 @@ host_float_ops::from_target (const struct floatformat *fmt, { double dto; - floatformat_to_double (fmt->split_half ? fmt->split_half : fmt, - from, &dto); + floatformat_to_double /* ARI: floatformat_to_double */ + (fmt->split_half ? fmt->split_half : fmt, from, &dto); *to = (T) dto; return; }