mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 09:09:30 +02:00
+ dummy override of WebAssembly handle_nested_exception
git-svn-id: branches/wasm@48215 -
This commit is contained in:
parent
2150d935cf
commit
f99e74866d
@ -55,6 +55,7 @@ implementation
|
||||
twasmexceptionstatehandler = class(tcgexceptionstatehandler)
|
||||
class procedure new_exception(list:TAsmList;const t:texceptiontemps; const exceptframekind: texceptframekind; out exceptstate: texceptionstate); override;
|
||||
class procedure free_exception(list: TAsmList; const t: texceptiontemps; const s: texceptionstate; a: aint; endexceptlabel: tasmlabel; onlyfree:boolean); override;
|
||||
class procedure handle_nested_exception(list:TAsmList;var t:texceptiontemps;var entrystate: texceptionstate); override;
|
||||
end;
|
||||
|
||||
class procedure twasmexceptionstatehandler.new_exception(list:TAsmList;const t:texceptiontemps; const exceptframekind: texceptframekind; out exceptstate: texceptionstate);
|
||||
@ -67,6 +68,11 @@ implementation
|
||||
list.Concat(tai_comment.Create(strpnew('TODO: free_exception')));
|
||||
end;
|
||||
|
||||
class procedure twasmexceptionstatehandler.handle_nested_exception(list:TAsmList;var t:texceptiontemps;var entrystate: texceptionstate);
|
||||
begin
|
||||
list.Concat(tai_comment.Create(strpnew('TODO: handle_nested_exception')));
|
||||
end;
|
||||
|
||||
{*****************************************************************************
|
||||
tcpuprocinfo
|
||||
*****************************************************************************}
|
||||
|
Loading…
Reference in New Issue
Block a user