mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:38:14 +02:00
* WebAssembly: fixed type conversion from pointer to qword (fixes bug #41092)
This commit is contained in:
parent
e219b24aec
commit
7c44300136
@ -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
10
tests/webtbs/tw41092.pp
Normal file
@ -0,0 +1,10 @@
|
||||
{$mode objfpc}
|
||||
{$H+}
|
||||
|
||||
var
|
||||
A: QWord;
|
||||
B: Pointer;
|
||||
|
||||
begin
|
||||
A := QWord(B);
|
||||
end.
|
Loading…
Reference in New Issue
Block a user