]> sourceware.org Git - glibc.git/commitdiff
Remove some commented code
authorSiddhesh Poyarekar <siddhesh@redhat.com>
Fri, 4 Jan 2013 10:00:34 +0000 (15:30 +0530)
committerSiddhesh Poyarekar <siddhesh@redhat.com>
Fri, 4 Jan 2013 10:00:34 +0000 (15:30 +0530)
ChangeLog
sysdeps/ieee754/dbl-64/mpa.c

index 9ae2d4be07c71bc93df0d283d129f6b1143e48a0..3309f2066a892c5799561f0961f6661af3c641ee 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2013-01-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
 
+       * sysdeps/ieee754/dbl-64/mpa.c(norm): Remove commented
+       declarations.
+       (denorm): Likewise.
+       (__mp_dbl): Likewise.
+       (__inv): Likewise.
+
        * sysdeps/ieee754/dbl-64/mpa.h: Remove commented declarations
        and adjust the header comment.
 
index b5cc06d3df92ffd5d9ce0c1ff20764f1d79ae470..0db13865fdbff7fca748a1457713d59db87bbc37 100644 (file)
@@ -142,9 +142,6 @@ static void norm(const mp_no *x, double *y, int p)
 {
   #define R  RADIXI
   int i;
-#if 0
-  int k;
-#endif
   double a,c,u,v,z[5];
   if (p<5) {
     if      (p==1) c = X[1];
@@ -196,9 +193,6 @@ static void denorm(const mp_no *x, double *y, int p)
 {
   int i,k;
   double c,u,z[5];
-#if 0
-  double a,v;
-#endif
 
 #define R  RADIXI
   if (EX<-44 || (EX==-44 && X[1]<TWO5))
@@ -241,10 +235,6 @@ static void denorm(const mp_no *x, double *y, int p)
 /* The result is correctly rounded to the nearest/even. *x is left unchanged */
 
 void __mp_dbl(const mp_no *x, double *y, int p) {
-#if 0
-  int i,k;
-  double a,c,u,v,z[5];
-#endif
 
   if (X[0] == ZERO)  {*y = ZERO;  return; }
 
@@ -507,9 +497,6 @@ static
 SECTION
 void __inv(const mp_no *x, mp_no *y, int p) {
   int i;
-#if 0
-  int l;
-#endif
   double t;
   mp_no z,w;
   static const int np1[] = {0,0,0,0,1,2,2,2,2,3,3,3,3,3,3,3,3,3,
This page took 0.10954 seconds and 5 git commands to generate.