mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-06 02:31:30 +02: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.
|
||||
|
||||
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}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user