summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2020-02-14 09:29:07 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2020-02-14 09:29:07 +0000
commit41d115912607cf71dd6005f7ad059ac1c4c22817 (patch)
tree32173996f037a1ffb2a63aa81a5e2fd8e144983a
parent3b07e7650cf496cdf4c7c3adf924f0b037e496a3 (diff)
downloadmpfr-41d115912607cf71dd6005f7ad059ac1c4c22817.tar.gz
[src/mpfr-impl.h] Removed an incorrect comment before MPFR_TMP_INIT1
(this macro does not allocate anything, and MPFR_TMP_INIT just after can allocate more than 1 limb). git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@13721 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--src/mpfr-impl.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mpfr-impl.h b/src/mpfr-impl.h
index 4c3e46073..dcc586487 100644
--- a/src/mpfr-impl.h
+++ b/src/mpfr-impl.h
@@ -1285,7 +1285,6 @@ typedef union { mp_size_t s; mp_limb_t l; } mpfr_size_limb_t;
#define MPFR_TMP_LIMBS_ALLOC(N) \
((mp_limb_t *) MPFR_TMP_ALLOC ((size_t) (N) * MPFR_BYTES_PER_MP_LIMB))
-/* temporary allocate 1 limb at xp, and initialize mpfr variable x */
/* The temporary var doesn't have any size field, but it doesn't matter
* since only functions dealing with the Heap care about it */
#define MPFR_TMP_INIT1(xp, x, p) \