Skip to content
Snippets Groups Projects
Commit df868fe9 authored by André Bargull's avatar André Bargull
Browse files

Bug 1791520: Add some keep alive annotations. r=jandem a=pascalc

parent e5de4757
No related branches found
Tags FIREFOX_102_4_0esr_BUILD1
No related merge requests found
......@@ -4035,6 +4035,10 @@ static bool NeedsKeepAlive(MInstruction* slotsOrElements, MInstruction* use) {
return true;
}
if (use->type() == MIRType::BigInt) {
return true;
}
MBasicBlock* block = use->block();
MInstructionIterator iter(block->begin(slotsOrElements));
MOZ_ASSERT(*iter == slotsOrElements);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment