mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-25 06:11:28 +02:00
* remove packed used for nan records in the softfpu code, it served no purpose
* recordered files of nan records in the softfpu code git-svn-id: trunk@23300 -
This commit is contained in:
parent
b0980b342d
commit
f0487f8fde
@ -1698,9 +1698,9 @@ Internal canonical NaN format.
|
||||
-------------------------------------------------------------------------------
|
||||
*}
|
||||
TYPE
|
||||
commonNaNT = packed record
|
||||
sign: flag;
|
||||
commonNaNT = record
|
||||
high, low : bits32;
|
||||
sign: flag;
|
||||
end;
|
||||
{*
|
||||
-------------------------------------------------------------------------------
|
||||
@ -2106,9 +2106,9 @@ end;
|
||||
| Internal canonical NaN format.
|
||||
*----------------------------------------------------------------------------*)
|
||||
type
|
||||
commonNANT = packed record
|
||||
sign : flag;
|
||||
commonNANT = record
|
||||
high, low : bits32;
|
||||
sign : flag;
|
||||
end;
|
||||
|
||||
(*----------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user