disable IEEE 754 check

This commit is contained in:
dzaima 2021-08-19 16:31:58 +03:00
parent a99a80a7a0
commit a1870123cd

View File

@ -149,9 +149,9 @@ static const u16 VAL_TAG = 0b1111111111110 ; // FFF. 1111111111110............
void cbqn_init(void);
#if __STDC_IEC_559__ == 0
#error "IEEE 754 floating point number support is required for CBQN"
#endif
// #if __STDC_IEC_559__ == 0 // this has some issues on M1, so disabling for now
// #error "IEEE 754 floating point number support is required for CBQN"
// #endif
typedef union B {
u64 u;
f64 f;