mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00

* when getting rid of temps. of inline parameters, take care if somewhere an alias of the variable might exist, resolves #24796 and #26534 git-svn-id: trunk@29616 -
27 lines
297 B
ObjectPascal
27 lines
297 B
ObjectPascal
{ %norun }
|
|
{ %opt=-O2 }
|
|
{Opt.level: -O2}
|
|
{$inline on}
|
|
unit tw26534a;
|
|
interface
|
|
|
|
implementation
|
|
|
|
procedure redirect( p: pointer );
|
|
begin
|
|
end;
|
|
|
|
procedure inlined( var R: byte ); inline;
|
|
begin
|
|
redirect(@R);
|
|
end;
|
|
|
|
procedure comp_failed;
|
|
var
|
|
a: byte;
|
|
begin
|
|
inlined(a); // ie2006111510
|
|
end;
|
|
|
|
end.
|