Delphi Error – W1066 Lost Extended floating point precision. Reduced to Double

Delphi Compiler Error

W1066 Lost Extended floating point precision. Reduced to Double

Reason for the Error & Solution

Extended precision floating-point operations are supported by for 32-bit platforms, but are not supported by Delphi compilers for 64-bit platforms.

In Delphi compilers for 64-bit platforms, the precision of floating-point computations was reduced from extended (10-byte values) to double (8-byte values). We do not recommend using extended precision floating-point values. The Intel x86 architecture supports 10-byte real data types, but the trend of new processor architectures is to perform floating-point computations in parallel and with at most double precision (see the Intel® Streaming SIMD Extensions).

For reading extended precision floating-point numbers from a file, see .

See Also

Share:

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

Delphi Compiler Error X2421 Imported identifier ‘%s’ conflicts with ‘%s’ in ‘%s’ Reason for the Error & Solution This occurs...
Delphi Compiler Error X2367 Case of property accessor method %s.%s should be %s.%s Reason for the Error & Solution No...
Delphi Compiler Error X2269 Overriding virtual method ‘%s.%s’ has lower visibility (%s) than base class ‘%s’ (%s) Reason for the...