mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
Replace M_SUF (M_LN2) with M_MLIT (M_LN2)
According to math-type-macros.h, M_SUF should be used to paste the suffix used by functions, while M_MLIT is used with macro constants. * math/e_exp2_template.c: Replace M_SUF (M_LN2) with M_MLIT (M_LN2). Signed-off-by: Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
This commit is contained in:
parent
06135c33b7
commit
3392791442
@ -1,5 +1,7 @@
|
||||
2018-04-27 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
|
||||
|
||||
* math/e_exp2_template.c: Replace M_SUF (M_LN2) with M_MLIT (M_LN2).
|
||||
|
||||
* math/w_acos_template.c: Replace M_SUF (fabs) with M_FABS.
|
||||
* math/w_asin_template.c: Likewise.
|
||||
* math/w_atanh_template.c: Likewise.
|
||||
|
@ -41,7 +41,7 @@ M_DECL_FUNC (__ieee754_exp2) (FLOAT x)
|
||||
if (M_FABS (fractx) < M_EPSILON / 4)
|
||||
result = M_SCALBN (1 + fractx, intx);
|
||||
else
|
||||
result = M_SCALBN (M_EXP (M_SUF (M_LN2) * fractx), intx);
|
||||
result = M_SCALBN (M_EXP (M_MLIT (M_LN2) * fractx), intx);
|
||||
math_check_force_underflow_nonneg (result);
|
||||
return result;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user