mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 01:01:33 +02:00
+ support externref and funcref WebAssembly globals in the internal object writer
This commit is contained in:
parent
8eea58f649
commit
9b4366e4f6
@ -1669,6 +1669,18 @@ implementation
|
||||
WriteByte(FWasmSections[wsiGlobal],$00);
|
||||
WriteByte(FWasmSections[wsiGlobal],$0B); { end }
|
||||
end;
|
||||
wbt_externref:
|
||||
begin
|
||||
WriteByte(FWasmSections[wsiGlobal],$D0); { ref.null extern }
|
||||
WriteByte(FWasmSections[wsiGlobal],$6F);
|
||||
WriteByte(FWasmSections[wsiGlobal],$0B); { end }
|
||||
end;
|
||||
wbt_funcref:
|
||||
begin
|
||||
WriteByte(FWasmSections[wsiGlobal],$D0); { ref.null func }
|
||||
WriteByte(FWasmSections[wsiGlobal],$70);
|
||||
WriteByte(FWasmSections[wsiGlobal],$0B); { end }
|
||||
end;
|
||||
else
|
||||
internalerror(2022052801);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user