mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 03:29:33 +02:00
Add DISABLE_SYSTEMINLINE check to be able to avoid setting SYSTEMINLINE macro
This commit is contained in:
parent
b8920670f4
commit
5913434ba9
@ -22,7 +22,9 @@ interface
|
|||||||
|
|
||||||
{ Using inlining for small system functions/wrappers }
|
{ Using inlining for small system functions/wrappers }
|
||||||
{$inline on}
|
{$inline on}
|
||||||
{$define SYSTEMINLINE}
|
{$ifndef DISABLE_SYSTEMINLINE}
|
||||||
|
{$define SYSTEMINLINE}
|
||||||
|
{$endif}
|
||||||
|
|
||||||
type
|
type
|
||||||
{$ifndef FPUNONE}
|
{$ifndef FPUNONE}
|
||||||
|
@ -29,7 +29,9 @@
|
|||||||
|
|
||||||
{ Using inlining for small system functions/wrappers }
|
{ Using inlining for small system functions/wrappers }
|
||||||
{$inline on}
|
{$inline on}
|
||||||
{$define SYSTEMINLINE}
|
{$ifndef DISABLE_SYSTEMINLINE}
|
||||||
|
{$define SYSTEMINLINE}
|
||||||
|
{$endif}
|
||||||
|
|
||||||
{ don't use FPU registervariables on the i386 and i8086 }
|
{ don't use FPU registervariables on the i386 and i8086 }
|
||||||
{$if defined(CPUI386) or defined(CPUI8086)}
|
{$if defined(CPUI386) or defined(CPUI8086)}
|
||||||
|
@ -28,7 +28,9 @@
|
|||||||
|
|
||||||
{ Using inlining for small system functions/wrappers }
|
{ Using inlining for small system functions/wrappers }
|
||||||
{$inline on}
|
{$inline on}
|
||||||
{$define SYSTEMINLINE}
|
{$ifndef DISABLE_SYSTEMINLINE}
|
||||||
|
{$define SYSTEMINLINE}
|
||||||
|
{$endif}
|
||||||
|
|
||||||
{ don't use FPU registervariables on the i386 and i8086 }
|
{ don't use FPU registervariables on the i386 and i8086 }
|
||||||
{$if defined(CPUI386) or defined(CPUI8086)}
|
{$if defined(CPUI386) or defined(CPUI8086)}
|
||||||
|
Loading…
Reference in New Issue
Block a user