Open GillesDuvert opened 2 months ago
Basicall the reason why test_format do not pass is not a format problem. It is just that linux:
GDL> r=-1d GDL> z=fix(r,type=15) GDL> z 18446744073709551615 GDL> z[0]=r GDL> z 18446744073709551615
OSX:
GDL> r=-1d GDL> z=fix(r,type=15) GDL> z 0 GDL> z[0]=r GDL> z 0
related to #1877 ?
probably beacuse https://developer.apple.com/documentation/apple-silicon/addressing-architectural-differences-in-your-macos-code#Audit-Code-that-Contains-Float-to-Int-Conversions
Basicall the reason why test_format do not pass is not a format problem. It is just that linux:
OSX: