]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Remove commented code
authorSiddhesh Poyarekar <siddhesh@redhat.com>
Mon, 25 Feb 2013 09:21:57 +0000 (14:51 +0530)
committerSiddhesh Poyarekar <siddhesh@redhat.com>
Mon, 25 Feb 2013 09:21:57 +0000 (14:51 +0530)
ChangeLog
sysdeps/ieee754/dbl-64/slowexp.c

index 026c49e705306b8d30a813abce092e23e8e5151d..a1217b80b54926a57b335718f8de2313de973266 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2013-02-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
 
+       * sysdeps/ieee754/dbl-64/slowexp.c (__slowexp): Remove commented
+       code.
+
        * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mp_dbl): Sync
        up changes with default code.
        * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mp_dbl):
index 34ca3275ebd37f558f21764c91c3b8795112ddef..4899af7c07d726a7ed958c526c0f45b6338158cd 100644 (file)
@@ -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;