mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 02:27:56 +02:00
added some float64() casts, based on similar casts in the 32bit code path, which makes ARM to build again
git-svn-id: trunk@25914 -
This commit is contained in:
parent
b147693cc5
commit
6522cd78ee
@ -124,9 +124,9 @@ end;
|
||||
|
||||
function unpack_float( const f: ValReal; out minus: boolean ): TDIY_FP; {$ifdef grisu1_inline}inline;{$endif}
|
||||
begin
|
||||
unpack_float.f := extractFloat64Frac( f );
|
||||
unpack_float.e := extractFloat64Exp( f );
|
||||
minus := ( extractFloat64Sign( f ) <> 0 );
|
||||
unpack_float.f := extractFloat64Frac( float64( f ) );
|
||||
unpack_float.e := extractFloat64Exp( float64( f ) );
|
||||
minus := ( extractFloat64Sign( float64( f ) ) <> 0 );
|
||||
end;
|
||||
|
||||
{$else not fpc_softfpu_implementation}
|
||||
|
Loading…
Reference in New Issue
Block a user