* Fixed overload choosing by arm native compiler.

git-svn-id: trunk@10793 -
This commit is contained in:
yury 2008-04-25 20:14:56 +00:00
parent ea787aba37
commit 3e1e6d25f0

View File

@ -1246,13 +1246,13 @@ implementation
// and with all signaling policies preserved as is.
type
{$ifdef ENDIAN_LITTLE}
{$if defined(ENDIAN_LITTLE) and not defined(FPC_DOUBLE_HILO_SWAPPED)}
twoword=record
lo,hi:longword; // Little Endian split of a double.
end;
{$else}
twoword=record
hi,lo:longword; // Little Endian split of a double.
hi,lo:longword; // Big Endian split of a double.
end;
{$endif}