@@ -74,7 +74,7 @@ real fla_slamch(char *cmach, ftnlen cmach_len)
74
74
static TLS_CLASS_SPEC logical lrnd ;
75
75
static TLS_CLASS_SPEC real rmin , rmax , t , rmach ;
76
76
extern logical fla_lsame (char * , char * , ftnlen , ftnlen );
77
- static TLS_CLASS_SPEC real small , sfmin ;
77
+ static TLS_CLASS_SPEC real small_val , sfmin ;
78
78
extern /* Subroutine */ integer fla_slamc2 (integer * , integer * , logical * , real
79
79
* , integer * , real * , integer * , real * );
80
80
static TLS_CLASS_SPEC integer it ;
@@ -155,13 +155,13 @@ real fla_slamch(char *cmach, ftnlen cmach_len)
155
155
emin = (real ) imin ;
156
156
emax = (real ) imax ;
157
157
sfmin = rmin ;
158
- small = (float )1. / rmax ;
159
- if (small >= sfmin ) {
158
+ small_val = (float )1. / rmax ;
159
+ if (small_val >= sfmin ) {
160
160
161
161
/* Use SMALL plus a bit, to avoid the possibility of rounding */
162
162
/* causing overflow when computing 1/sfmin. */
163
163
164
- sfmin = small * (eps + (float )1. );
164
+ sfmin = small_val * (eps + (float )1. );
165
165
}
166
166
}
167
167
@@ -437,7 +437,7 @@ explicitly.\002,/)";
437
437
static TLS_CLASS_SPEC integer i__ , lbeta ;
438
438
static TLS_CLASS_SPEC real rbase ;
439
439
static TLS_CLASS_SPEC integer lemin , lemax , gnmin ;
440
- static TLS_CLASS_SPEC real small ;
440
+ static TLS_CLASS_SPEC real small_val ;
441
441
static TLS_CLASS_SPEC integer gpmin ;
442
442
static TLS_CLASS_SPEC real third , lrmin , lrmax , sixth ;
443
443
static TLS_CLASS_SPEC logical lieee1 ;
@@ -600,13 +600,13 @@ explicitly.\002,/)";
600
600
/* is detected when we cannot recover the previous A. */
601
601
602
602
rbase = one / lbeta ;
603
- small = one ;
603
+ small_val = one ;
604
604
for (i__ = 1 ; i__ <= 3 ; ++ i__ ) {
605
- r__1 = small * rbase ;
606
- small = fla_slamc3 (& r__1 , & zero );
605
+ r__1 = small_val * rbase ;
606
+ small_val = fla_slamc3 (& r__1 , & zero );
607
607
/* L20: */
608
608
}
609
- a = fla_slamc3 (& one , & small );
609
+ a = fla_slamc3 (& one , & small_val );
610
610
fla_slamc4 (& ngpmin , & one , & lbeta );
611
611
r__1 = - one ;
612
612
fla_slamc4 (& ngnmin , & r__1 , & lbeta );
0 commit comments