author | Szabolcs Nagy <nsz@port70.net> | 2018年10月16日 22:20:39 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019年04月17日 13:02:47 -0400 |
commit | e980ca7a571465e8a4c887a199491c2cd8d0c0ee (patch) | |
tree | d86a07a748a2c59bf1f12609f497cfd12f0dfc7a /include/math.h | |
parent | 65c8be380431eebe4d70d130bd38563f8df9a7d7 (diff) | |
download | musl-e980ca7a571465e8a4c887a199491c2cd8d0c0ee.tar.gz |
-rw-r--r-- | include/math.h | 12 |
diff --git a/include/math.h b/include/math.h index fea34686..14f28ec8 100644 --- a/include/math.h +++ b/include/math.h @@ -36,6 +36,18 @@ extern "C" { #define FP_SUBNORMAL 3 #define FP_NORMAL 4 +#ifdef __FP_FAST_FMA +#define FP_FAST_FMA 1 +#endif + +#ifdef __FP_FAST_FMAF +#define FP_FAST_FMAF 1 +#endif + +#ifdef __FP_FAST_FMAL +#define FP_FAST_FMAL 1 +#endif + int __fpclassify(double); int __fpclassifyf(float); int __fpclassifyl(long double); |