mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-25 01:49:09 +02:00
m68k-amiga: fixed wrong define to test against softfpu (oops...)
git-svn-id: trunk@33672 -
This commit is contained in:
parent
424f329173
commit
23cf551bf3
@ -25,11 +25,11 @@ interface
|
|||||||
{$I systemh.inc}
|
{$I systemh.inc}
|
||||||
{$I osdebugh.inc}
|
{$I osdebugh.inc}
|
||||||
|
|
||||||
{$if defined(cpum68k) and defined(fpu_soft)}
|
{$if defined(cpum68k) and defined(fpusoft)}
|
||||||
{$define fpc_softfpu_interface}
|
{$define fpc_softfpu_interface}
|
||||||
{$i softfpu.pp}
|
{$i softfpu.pp}
|
||||||
{$undef fpc_softfpu_interface}
|
{$undef fpc_softfpu_interface}
|
||||||
{$endif defined(cpum68k) and defined(fpu_soft)}
|
{$endif defined(cpum68k) and defined(fpusoft)}
|
||||||
|
|
||||||
const
|
const
|
||||||
LineEnding = #10;
|
LineEnding = #10;
|
||||||
@ -94,7 +94,7 @@ var
|
|||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
{$if defined(cpum68k) and defined(fpu_soft)}
|
{$if defined(cpum68k) and defined(fpusoft)}
|
||||||
|
|
||||||
{$define fpc_softfpu_implementation}
|
{$define fpc_softfpu_implementation}
|
||||||
{$i softfpu.pp}
|
{$i softfpu.pp}
|
||||||
@ -111,7 +111,7 @@ implementation
|
|||||||
{$define FPC_SYSTEM_HAS_ExtractFloat32Frac}
|
{$define FPC_SYSTEM_HAS_ExtractFloat32Frac}
|
||||||
{$define FPC_SYSTEM_HAS_extractFloat32Exp}
|
{$define FPC_SYSTEM_HAS_extractFloat32Exp}
|
||||||
{$define FPC_SYSTEM_HAS_extractFloat32Sign}
|
{$define FPC_SYSTEM_HAS_extractFloat32Sign}
|
||||||
{$endif defined(cpum68k) and defined(fpu_soft)}
|
{$endif defined(cpum68k) and defined(fpusoft)}
|
||||||
|
|
||||||
{$I system.inc}
|
{$I system.inc}
|
||||||
{$I osdebug.inc}
|
{$I osdebug.inc}
|
||||||
|
Loading…
Reference in New Issue
Block a user