зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1412653 - Add missing MOZ_TRY. r=nbp
CLOSED TREE
This commit is contained in:
Родитель
4e2dc7e51f
Коммит
ce967e50c4
|
@ -5333,7 +5333,7 @@ IonBuilder::jsop_funapplyarguments(uint32_t argc)
|
|||
|
||||
CallInfo callInfo(alloc(), pc, /* constructing = */ false,
|
||||
/* ignoresReturnValue = */ BytecodeIsPopped(pc));
|
||||
callInfo.savePriorCallStack(this, current, 4);
|
||||
MOZ_TRY(callInfo.savePriorCallStack(this, current, 4));
|
||||
|
||||
// Vp
|
||||
MDefinition* vp = current->pop();
|
||||
|
|
|
@ -846,7 +846,7 @@ IonBuilder::inlineArrayPush(CallInfo& callInfo)
|
|||
|
||||
// Restore the stack, such that resume points are created with the stack
|
||||
// as it was before the call.
|
||||
callInfo.pushPriorCallStack(this, current);
|
||||
MOZ_TRY(callInfo.pushPriorCallStack(this, current));
|
||||
}
|
||||
|
||||
MInstruction* ins = nullptr;
|
||||
|
|
Загрузка…
Ссылка в новой задаче