Index: src/compiler/js-typed-lowering.cc |
diff --git a/src/compiler/js-typed-lowering.cc b/src/compiler/js-typed-lowering.cc |
index ad03b10e14a1894e567f1f6a46c4e13fbac342e1..602b6333a3d32207628d24495f68f350c45c19a2 100644 |
--- a/src/compiler/js-typed-lowering.cc |
+++ b/src/compiler/js-typed-lowering.cc |
@@ -262,7 +262,7 @@ class JSBinopReduction final { |
// left operand. |
const Operator* op = jsgraph()->common()->FrameState( |
state_info.type(), state_info.bailout_id(), |
- OutputFrameStateCombine::PokeAt(1)); |
+ OutputFrameStateCombine::PokeAt(1), state_info.shared_info()); |
return graph()->NewNode(op, |
frame_state->InputAt(kFrameStateParametersInput), |
@@ -286,7 +286,7 @@ class JSBinopReduction final { |
// top of the stack (i.e., the slot used for the right operand). |
const Operator* op = jsgraph()->common()->FrameState( |
state_info.type(), state_info.bailout_id(), |
- OutputFrameStateCombine::PokeAt(0)); |
+ OutputFrameStateCombine::PokeAt(0), state_info.shared_info()); |
// Change the left operand {converted_left} on the expression stack. |
Node* stack = frame_state->InputAt(2); |