blob: 3ee2bd804ebdea4df4dc2c79ca71e1587d522746 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#define __expm1 __expm1_fma
/* NB: __expm1 may be expanded to __expm1_fma in the following
prototypes. */
extern long double __expm1l (long double);
extern long double __expm1f128 (long double);
#define SECTION __attribute__ ((section (".text.fma")))
#include <sysdeps/ieee754/dbl-64/s_expm1.c>
|