mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 01:29:28 +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 }
|
||||
{$inline on}
|
||||
{$define SYSTEMINLINE}
|
||||
{$ifndef DISABLE_SYSTEMINLINE}
|
||||
{$define SYSTEMINLINE}
|
||||
{$endif}
|
||||
|
||||
type
|
||||
{$ifndef FPUNONE}
|
||||
|
@ -29,7 +29,9 @@
|
||||
|
||||
{ Using inlining for small system functions/wrappers }
|
||||
{$inline on}
|
||||
{$define SYSTEMINLINE}
|
||||
{$ifndef DISABLE_SYSTEMINLINE}
|
||||
{$define SYSTEMINLINE}
|
||||
{$endif}
|
||||
|
||||
{ don't use FPU registervariables on the i386 and i8086 }
|
||||
{$if defined(CPUI386) or defined(CPUI8086)}
|
||||
|
@ -28,7 +28,9 @@
|
||||
|
||||
{ Using inlining for small system functions/wrappers }
|
||||
{$inline on}
|
||||
{$define SYSTEMINLINE}
|
||||
{$ifndef DISABLE_SYSTEMINLINE}
|
||||
{$define SYSTEMINLINE}
|
||||
{$endif}
|
||||
|
||||
{ don't use FPU registervariables on the i386 and i8086 }
|
||||
{$if defined(CPUI386) or defined(CPUI8086)}
|
||||
|
Loading…
Reference in New Issue
Block a user