mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 23:38:38 +09:00
Replace calls to undefined functions isMarkable() and toMarkablePointer()
This commit is contained in:
parent
1e7a9e0e28
commit
6ba305ded8
1 changed files with 2 additions and 2 deletions
|
|
@ -3462,8 +3462,8 @@ MacroAssemblerARMCompat::storePayload(const Value& val, const Address& dest)
|
|||
ScratchRegisterScope scratch(asMasm());
|
||||
SecondScratchRegisterScope scratch2(asMasm());
|
||||
|
||||
if (val.isMarkable())
|
||||
ma_mov(ImmGCPtr(val.toMarkablePointer()), scratch);
|
||||
if (val.isGCThing())
|
||||
ma_mov(ImmGCPtr(val.toGCThing()), scratch);
|
||||
else
|
||||
ma_mov(Imm32(val.toNunboxPayload()), scratch);
|
||||
ma_str(scratch, ToPayload(dest), scratch2);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue