This is an automated email from the git hooks/post-receive script.
pierov pushed a commit to annotated tag FIREFOX_102_4_0esr_BUILD1 in repository tor-browser.
commit df868fe98ed5d25b9d6c2994d77f74929c938e78 Author: André Bargull andre.bargull@gmail.com AuthorDate: Thu Oct 6 18:22:12 2022 +0000
Bug 1791520: Add some keep alive annotations. r=jandem a=pascalc
Differential Revision: https://phabricator.services.mozilla.com/D157735 --- js/src/jit/IonAnalysis.cpp | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/js/src/jit/IonAnalysis.cpp b/js/src/jit/IonAnalysis.cpp index 461c9cffbdac..2b13a0a6dddf 100644 --- a/js/src/jit/IonAnalysis.cpp +++ b/js/src/jit/IonAnalysis.cpp @@ -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);