* 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:
florian 2013-01-02 18:13:21 +00:00
parent b0980b342d
commit f0487f8fde

View File

@ -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;
(*----------------------------------------------------------------------------