diff options
Diffstat (limited to 'gdb/target-float.c')
-rw-r--r-- | gdb/target-float.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/target-float.c b/gdb/target-float.c index caa6943..ddf20c8 100644 --- a/gdb/target-float.c +++ b/gdb/target-float.c @@ -647,8 +647,8 @@ host_float_ops<T>::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; } |