mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-21 02:19:40 +01:00
* Fixed overload choosing by arm native compiler.
git-svn-id: trunk@10793 -
This commit is contained in:
parent
ea787aba37
commit
3e1e6d25f0
@ -1246,13 +1246,13 @@ implementation
|
|||||||
// and with all signaling policies preserved as is.
|
// and with all signaling policies preserved as is.
|
||||||
|
|
||||||
type
|
type
|
||||||
{$ifdef ENDIAN_LITTLE}
|
{$if defined(ENDIAN_LITTLE) and not defined(FPC_DOUBLE_HILO_SWAPPED)}
|
||||||
twoword=record
|
twoword=record
|
||||||
lo,hi:longword; // Little Endian split of a double.
|
lo,hi:longword; // Little Endian split of a double.
|
||||||
end;
|
end;
|
||||||
{$else}
|
{$else}
|
||||||
twoword=record
|
twoword=record
|
||||||
hi,lo:longword; // Little Endian split of a double.
|
hi,lo:longword; // Big Endian split of a double.
|
||||||
end;
|
end;
|
||||||
{$endif}
|
{$endif}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user