* WebAssembly: fixed type conversion from pointer to qword (fixes bug #41092)

This commit is contained in:
Nikolay Nikolov 2025-02-24 10:48:18 +02:00
parent e219b24aec
commit 7c44300136
2 changed files with 11 additions and 1 deletions

View File

@ -1452,7 +1452,7 @@ implementation
extra_slots:=prepare_stack_for_ref(list,tmpref,false);
a_load_ref_stack(list,fromsize,tmpref,extra_slots);
if def2regtyp(fromsize)=R_INTREGISTER then
if def2regtyp(fromsize) in [R_INTREGISTER,R_ADDRESSREGISTER] then
resize_stack_int_val(list,fromsize,tosize,false);
a_load_stack_reg(list,tosize,register);
end;

10
tests/webtbs/tw41092.pp Normal file
View File

@ -0,0 +1,10 @@
{$mode objfpc}
{$H+}
var
A: QWord;
B: Pointer;
begin
A := QWord(B);
end.