summaryrefslogtreecommitdiff
path: root/fma.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2001-11-30 13:44:59 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2001-11-30 13:44:59 +0000
commit1f12899b6e786d21b417a646e6c03ffb0f36377e (patch)
tree0969a263aac5138d466fdae36e433fe95c696388 /fma.c
parent538b931a3b879b73798dcbe4fd9a979a95174cd4 (diff)
downloadmpfr-1f12899b6e786d21b417a646e6c03ffb0f36377e.tar.gz
Unused variables.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1607 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'fma.c')
-rw-r--r--fma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fma.c b/fma.c
index 37a7898e4..d852680e3 100644
--- a/fma.c
+++ b/fma.c
@@ -99,8 +99,8 @@ mpfr_fma (mpfr_ptr s, mpfr_srcptr x ,mpfr_srcptr y ,mpfr_srcptr z , mp_rnd_t rnd
{
/* Declaration of the intermediary variable */
mpfr_t t, u;
- int d,fl1,fl2;
- int accu=0;
+ int d;
+ int accu = 0;
/* Declaration of the size variable */
mp_prec_t Nx = MPFR_PREC(x); /* Precision of input variable */