svn commit: r271147 - head/lib/msun/src

Steve Kargl kargl at FreeBSD.org
Thu Sep 4 23:50:06 UTC 2014


Author: kargl
Date: Thu Sep  4 23:50:05 2014
New Revision: 271147
URL: http://svnweb.freebsd.org/changeset/base/271147

Log:
  Remove an initialized, but otherwise, unused variable.

Modified:
  head/lib/msun/src/e_lgamma_r.c
  head/lib/msun/src/e_lgammaf_r.c

Modified: head/lib/msun/src/e_lgamma_r.c
==============================================================================
--- head/lib/msun/src/e_lgamma_r.c	Thu Sep  4 22:22:53 2014	(r271146)
+++ head/lib/msun/src/e_lgamma_r.c	Thu Sep  4 23:50:05 2014	(r271147)
@@ -90,7 +90,6 @@ static const volatile double vzero = 0;
 
 static const double
 zero=  0.00000000000000000000e+00,
-two52=  4.50359962737049600000e+15, /* 0x43300000, 0x00000000 */
 half=  5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */
 one =  1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */
 pi  =  3.14159265358979311600e+00, /* 0x400921FB, 0x54442D18 */

Modified: head/lib/msun/src/e_lgammaf_r.c
==============================================================================
--- head/lib/msun/src/e_lgammaf_r.c	Thu Sep  4 22:22:53 2014	(r271146)
+++ head/lib/msun/src/e_lgammaf_r.c	Thu Sep  4 23:50:05 2014	(r271147)
@@ -23,7 +23,6 @@ static const volatile float vzero = 0;
 
 static const float
 zero=  0.0000000000e+00,
-two23=  8.3886080000e+06, /* 0x4b000000 */
 half=  5.0000000000e-01, /* 0x3f000000 */
 one =  1.0000000000e+00, /* 0x3f800000 */
 pi  =  3.1415927410e+00, /* 0x40490fdb */


More information about the svn-src-all mailing list