mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 21:29:42 +02:00
* handle raise nodes in dfa on jvm, resolves #27416
git-svn-id: trunk@29641 -
This commit is contained in:
parent
2d3ab816b0
commit
c0e66deaf2
@ -517,6 +517,10 @@ unit optdfa;
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
{$ifdef JVM}
|
||||||
|
{ all other platforms except jvm translate raise nodes into call nodes during pass_1 }
|
||||||
|
raisen,
|
||||||
|
{$endif JVM}
|
||||||
asn,
|
asn,
|
||||||
inlinen,
|
inlinen,
|
||||||
calln:
|
calln:
|
||||||
@ -918,6 +922,10 @@ unit optdfa;
|
|||||||
end
|
end
|
||||||
end;
|
end;
|
||||||
{ could be the implicitly generated load node for the result }
|
{ could be the implicitly generated load node for the result }
|
||||||
|
{$ifdef JVM}
|
||||||
|
{ all other platforms except jvm translate raise nodes into call nodes during pass_1 }
|
||||||
|
raisen,
|
||||||
|
{$endif JVM}
|
||||||
loadn,
|
loadn,
|
||||||
assignn,
|
assignn,
|
||||||
calln,
|
calln,
|
||||||
|
Loading…
Reference in New Issue
Block a user