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 E2313 Attribute – Known attribute cannot specify properties Reason for the Error & Solution No further information...
Delphi Compiler Error E2379 Virtual methods not allowed in record types Reason for the Error & Solution No further information...
Rodrigo , one of the long time Delphi Developer has been working on one of his personal project “Delphi IDE...