Value Meaning at definition Meaning at call site {$INLINE ON}
(default) The routine is compiled as inlineable if it is
tagged with the inline directive.
The routine will be expanded inline if possible.
{$INLINE AUTO}
Behaves like
{$INLINE ON}
, with the addition
that routines not marked with inline will be inlined
if their code size is less than or equal to 32 bytes.
{$INLINE AUTO}
has no effect at the call site.
{$INLINE OFF}
The routine will not be marked as inlineable,
even if it is tagged with inline.
The routine will not be expanded inline.
130