about summary refs log tree commit diff
path: root/sysdeps
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@redhat.com>2013-02-25 14:51:57 +0530
committerSiddhesh Poyarekar <siddhesh@redhat.com>2013-02-25 14:51:57 +0530
commitdc60cb110b75b9dd2a205ad530880a23bf60557c (patch)
tree9b7756ad1b9b369b63ccbc97ee0ccd426d223453 /sysdeps
parent60f5a8b534207734cdbc75dd3ad26b804036609c (diff)
downloadglibc-dc60cb110b75b9dd2a205ad530880a23bf60557c.tar.gz
glibc-dc60cb110b75b9dd2a205ad530880a23bf60557c.tar.xz
glibc-dc60cb110b75b9dd2a205ad530880a23bf60557c.zip
Remove commented code
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/ieee754/dbl-64/slowexp.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/sysdeps/ieee754/dbl-64/slowexp.c b/sysdeps/ieee754/dbl-64/slowexp.c
index 34ca3275eb..4899af7c07 100644
--- a/sysdeps/ieee754/dbl-64/slowexp.c
+++ b/sysdeps/ieee754/dbl-64/slowexp.c
@@ -41,13 +41,7 @@ double
 SECTION
 __slowexp(double x) {
   double w,z,res,eps=3.0e-26;
-#if 0
-  double y;
-#endif
   int p;
-#if 0
-  int orig,i;
-#endif
   mp_no mpx, mpy, mpz,mpw,mpeps,mpcor;
 
   p=6;