diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-02-25 18:11:14 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-02-25 18:11:14 +0530 |
commit | 2a983a2e0a2da070219a9cc5f4157d9dceee3c88 (patch) | |
tree | 49c456db3901d8c8b6ff8c30b2ce909aedc7110a /sysdeps | |
parent | e69804d14e43f14c3c65dc570afdbfb822c9838b (diff) | |
download | glibc-2a983a2e0a2da070219a9cc5f4157d9dceee3c88.tar glibc-2a983a2e0a2da070219a9cc5f4157d9dceee3c88.tar.gz glibc-2a983a2e0a2da070219a9cc5f4157d9dceee3c88.tar.bz2 glibc-2a983a2e0a2da070219a9cc5f4157d9dceee3c88.zip |
Remove commented declarations
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/ieee754/dbl-64/sincos32.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/sysdeps/ieee754/dbl-64/sincos32.c b/sysdeps/ieee754/dbl-64/sincos32.c index 5a8f1bd648..0a8b0a76ed 100644 --- a/sysdeps/ieee754/dbl-64/sincos32.c +++ b/sysdeps/ieee754/dbl-64/sincos32.c @@ -57,14 +57,7 @@ SECTION ss32(mp_no *x, mp_no *y, int p) { int i; double a; -#if 0 - double b; - static const mp_no mpone = {1,{1.0,1.0}}; -#endif mp_no mpt1,x2,gor,sum ,mpk={1,{1.0}}; -#if 0 - mp_no mpt2; -#endif for (i=1;i<=p;i++) mpk.d[i]=0; __sqr(x,&x2,p); @@ -89,14 +82,7 @@ SECTION cc32(mp_no *x, mp_no *y, int p) { int i; double a; -#if 0 - double b; - static const mp_no mpone = {1,{1.0,1.0}}; -#endif mp_no mpt1,x2,gor,sum ,mpk={1,{1.0}}; -#if 0 - mp_no mpt2; -#endif for (i=1;i<=p;i++) mpk.d[i]=0; __sqr(x,&x2,p); |