diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/target-float.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ca8c5df..d6cbba8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2017-11-29 John Baldwin <jhb@FreeBSD.org> + + * target-float.c [HAVE_LIBMPFR]: Define MPFR_USE_INTMAX_T. + 2017-11-29 Joel Brobecker <brobecker@adacore.com> * ada-lang.c (to_fixed_range_type): Make sure that the size diff --git a/gdb/target-float.c b/gdb/target-float.c index 32237ec..b40b641 100644 --- a/gdb/target-float.c +++ b/gdb/target-float.c @@ -1147,6 +1147,8 @@ host_float_ops<T>::compare (const gdb_byte *x, const struct type *type_x, #ifdef HAVE_LIBMPFR +#define MPFR_USE_INTMAX_T + #include <mpfr.h> class mpfr_float_ops : public target_float_ops |