J.15.1 Pragma Inline
Syntax
Legality Rules
{
AI05-0229-1}
The
pragma
shall apply to one or more callable entities or generic subprograms.
Static Semantics
Ramification:
Note that inline expansion is desired no matter what
name
is used in the call. This allows one to request inlining for only one
of several overloaded subprograms as follows:
package IO is
procedure Put(X : in Integer);
procedure Put(X : in String);
procedure Put(X : in Character);
private
procedure Character_Put(X : in Character) renames Put;
pragma Inline(Character_Put);
end IO;
with IO; use IO;
procedure Main is
I : Integer;
C : Character;
begin
...
Put(C); -- Inline expansion is desired.
Put(I); -- Inline expansion is NOT desired.
end Main;
Implementation Permissions
Reason: This is allowed for Ada 83 compatibility.
This is only a permission as this usage was considered obsolescent even
for Ada 95.
4 {
AI05-0229-1}
The name in a
pragma
Inline may denote more than one entity in the case of overloading. Such
a
pragma applies
to all of the denoted entities.
Incompatibilities With Ada 83
{
AI95-00309-01}
{
AI05-0229-1}
A pragma Inline cannot refer to a
subprogram_body
outside of that body. The pragma can be given inside of the subprogram
body. Ada 2005 adds an Implementation Permission to allow this usage
for compatibility (and Ada 95 implementations also can use this permission),
but implementations do not have to allow such
pragmas.
Extensions to Ada 83
Extensions to Ada 95
Wording Changes from Ada 2005
Ada 2005 and 2012 Editions sponsored in part by Ada-Europe