> -al is enough for checking this.
Right, it's just my habit because I usually check register allocation as
well :p
--
View this message in context:
http://free-pascal-general.1045716.n5.nabble.com/nested-inline-tp5718612p5718626.html
Sent from the Free Pascal - General mailing list archive a
On 15.03.2014 13:33, leledumbo wrote:
fpc -alnrt and check the generated assembly yourself
-al is enough for checking this.
Regards,
Sven
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listin
fpc -alnrt and check the generated assembly yourself
--
View this message in context:
http://free-pascal-general.1045716.n5.nabble.com/nested-inline-tp5718612p5718615.html
Sent from the Free Pascal - General mailing list archive at Nabble.com.
___
fp
Hi All,
Is nested inline allowed? i.e. will the compiler generate inlined code for
the following source:
procedure a; inline;
begin
end;
procedure b; inline;
begin
a;
end;
if I call b() in the main program, will the compile copy code for both a
and b to avoid function calls?
Thanks,
Xiangron