From 9aacdb2db0b7fcf03d1d2522383b71cd695904dc Mon Sep 17 00:00:00 2001 From: Niels M?ller Date: Sun, 15 Sep 2019 08:45:52 +0200 Subject: Fix use of TMP_ALLOC in tuneup.c --- gmp-impl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gmp-impl.h') diff --git a/gmp-impl.h b/gmp-impl.h index 293defd8a..6e155a4af 100644 --- a/gmp-impl.h +++ b/gmp-impl.h @@ -341,10 +341,10 @@ extern "C" { TMP_MARK was made, but then no TMP_ALLOCs. */ /* The alignment in bytes, used for TMP_ALLOCed blocks, when alloca or - __gmp_allocate_func doesn't already determine it. Currently TMP_ALLOC - isn't used for "double"s, so that's not in the union. */ + __gmp_allocate_func doesn't already determine it. */ union tmp_align_t { mp_limb_t l; + double d; char *p; }; #define __TMP_ALIGN sizeof (union tmp_align_t) -- cgit v1.2.1