From f414520d3c9d661411db5d59a21daf9790cab3f4 Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Thu, 14 Feb 2013 11:39:14 +0530 Subject: Use __sqr instead of __mul wherever possible --- sysdeps/ieee754/dbl-64/mpatan.c | 2 +- sysdeps/ieee754/dbl-64/mpsqrt.c | 2 +- sysdeps/ieee754/dbl-64/sincos32.c | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'sysdeps') diff --git a/sysdeps/ieee754/dbl-64/mpatan.c b/sysdeps/ieee754/dbl-64/mpatan.c index db5868092a..0f5a24a3c7 100644 --- a/sysdeps/ieee754/dbl-64/mpatan.c +++ b/sysdeps/ieee754/dbl-64/mpatan.c @@ -66,7 +66,7 @@ __mpatan(mp_no *x, mp_no *y, int p) { mptwoim1.d[0] = ONE; /* Reduce x m times */ - __mul(x,x,&mpsm,p); + __sqr(x,&mpsm,p); if (m==0) __cpy(x,&mps,p); else { for (i=0; i1.0;a-=2.0) { @@ -99,7 +99,7 @@ cc32(mp_no *x, mp_no *y, int p) { #endif for (i=1;i<=p;i++) mpk.d[i]=0; - __mul(x,x,&x2,p); + __sqr(x,&x2,p); mpk.d[1]=27.0; __mul(&oofac27,&mpk,&gor,p); __cpy(&gor,&sum,p); -- cgit 1.4.1