Bug 1054531 - Forgot a place in RematerializedFrame to propagate silentFailure. (r=nbp)
--- a/js/src/jit/JitFrameIterator.h
+++ b/js/src/jit/JitFrameIterator.h
@@ -587,17 +587,17 @@ class InlineFrameIterator
unsigned skip = parent_s.numAllocations() - nactual - 3 - argsObjAdj;
for (unsigned j = 0; j < skip; j++)
parent_s.skip();
// Get the overflown arguments
parent_s.readCommonFrameSlots(nullptr, nullptr);
parent_s.readFunctionFrameArgs(argOp, nullptr, nullptr,
nformal, nactual, it.script(),
- unreadablePlaceholder);
+ unreadablePlaceholder, silentFailure);
} else {
// There is no parent frame to this inlined frame, we can read
// from the frame's Value vector directly.
Value *argv = frame_->actualArgs();
for (unsigned i = nformal; i < nactual; i++)
argOp(argv[i]);
}
}