Avoid use of fastmath optimization inside compiler

This commit is contained in:
Pierre Muller 2022-01-25 21:50:03 +00:00
parent 54efcc4bbb
commit 91f29419a5

View File

@ -15,6 +15,11 @@
exceptions in the constructors }
{$IMPLICITEXCEPTIONS OFF}
{ We don't want the compiler to use fastmath
optimization because it considers negative zeroes
as normal zeroes }
{$OPTIMIZATION NOFASTMATH}
{ We don't want C operators to be used inside the compiler }
{$COPERATORS OFF}