From d63f73be346f4f3d4634a0b21ed211fbf0eb6f0a Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Fri, 28 Dec 2012 19:02:01 +0530 Subject: Remove unnecessary variable mptwoim1 Code cleanup. --- sysdeps/ieee754/dbl-64/mpatan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sysdeps/ieee754/dbl-64/mpatan.c') diff --git a/sysdeps/ieee754/dbl-64/mpatan.c b/sysdeps/ieee754/dbl-64/mpatan.c index d897bbbc46..b2bf3ba2ca 100644 --- a/sysdeps/ieee754/dbl-64/mpatan.c +++ b/sysdeps/ieee754/dbl-64/mpatan.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001, 2011 Free Software Foundation + * Copyright (C) 2001-2012 Free Software Foundation * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by @@ -98,7 +98,7 @@ __mpatan(mp_no *x, mp_no *y, int p) { __sub(&mps,&mpt1,&mpt,p); /* Compute Atan(x) */ - mptwoim1.d[1] = __atan_twom[m].d; + mptwoim1.d[1] = 1 << m; __mul(&mptwoim1,&mpt,y,p); return; -- cgit 1.4.1