1234567891011121314151617181920212223242526272829303132333435363738 |
- #include "test-math-floatn.h"
- #include <bits/floatn.h>
- #include <float.h>
- #define FUNC(function) function ## f64
- #define FLOAT _Float64
- #define CFLOAT __CFLOAT64
- #define BUILD_COMPLEX(real, imag) (CMPLXF64 ((real), (imag)))
- #define PREFIX FLT64
- #define TYPE_STR "double"
- #define ULP_IDX ULP_DBL
- #define ULP_I_IDX ULP_I_DBL
- #define LIT(x) __f64 (x)
- #define LITM(x) x ## f64
- #define FTOSTR strfromf64
- #define snan_value_MACRO SNANF64
- #define FUNC_NARROW_PREFIX f64
|