summaryrefslogtreecommitdiff
path: root/src/mpn_exp.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2011-11-02 11:44:26 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2011-11-02 11:44:26 +0000
commita71b879b885f0fabd4875b14f2b18fdf20328244 (patch)
treef648e0d5c5c9d7c84d4a24c45d4d615e8015a343 /src/mpn_exp.c
parent239216bebadad1a7bd9cb78e21559d1bc7e85511 (diff)
downloadmpfr-a71b879b885f0fabd4875b14f2b18fdf20328244.tar.gz
[src/mpn_exp.c] changed FIXME into TODO
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@7932 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'src/mpn_exp.c')
-rw-r--r--src/mpn_exp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mpn_exp.c b/src/mpn_exp.c
index f0bded016..c651a5901 100644
--- a/src/mpn_exp.c
+++ b/src/mpn_exp.c
@@ -91,7 +91,7 @@ mpfr_mpn_exp (mp_limb_t *a, mpfr_exp_t *exp_r, int b, mpfr_exp_t e, size_t n)
n1 = (n * GMP_NUMB_BITS - bits) / GMP_NUMB_BITS;
/* square of A : {c+2n1, 2(n-n1)} = {a+n1, n-n1}^2 */
- /* FIXME: we should use a short square here, but this needs to redo
+ /* TODO: we should use a short square here, but this needs to redo
the error analysis */
mpn_sqr_n (c + 2 * n1, a + n1, n - n1);