+ added function fpc_wasm_invoke_helper to the WebAssembly RTL

This commit is contained in:
Nikolay Nikolov 2025-01-25 08:21:56 +02:00
parent 28a9a44894
commit 5e813e62f2
2 changed files with 9 additions and 0 deletions

View File

@ -883,3 +883,7 @@ function fpc_hugeptr_cmp_normalized_ae(p1, p2: HugePointer): Boolean; compilerpr
{$ifdef cpullvm}
{$i llvmintr.inc}
{$endif cpullvm}
{$ifdef cpuwasm32}
procedure fpc_wasm_invoke_helper(CodeAddress: CodePointer; Args: Pointer; Result: Pointer); compilerproc;
{$endif cpuwasm32}

View File

@ -20,6 +20,11 @@
procedure fpc_wasm32_init_tls(memory: Pointer);external name '__wasm_init_tls';
{$endif FPC_WASM_THREADS}
procedure fpc_wasm_invoke_helper(CodeAddress: CodePointer; Args: Pointer; Result: Pointer);assembler;nostackframe;
asm
unreachable
end;
{$define FPC_SYSTEM_HAS_FPC_CPUINIT}
procedure fpc_cpuinit;
begin