Index: src/compiler/js-graph.cc |
diff --git a/src/compiler/js-graph.cc b/src/compiler/js-graph.cc |
index b247f8a19f534f6b9cf70fb76178ae1813541f59..84fcf82c84ffe2b11d89bcc553d055bbe4fe8981 100644 |
--- a/src/compiler/js-graph.cc |
+++ b/src/compiler/js-graph.cc |
@@ -193,8 +193,8 @@ Node* JSGraph::EmptyFrameState() { |
if (!empty_frame_state || empty_frame_state->IsDead()) { |
Node* state_values = graph()->NewNode(common()->StateValues(0)); |
empty_frame_state = graph()->NewNode( |
- common()->FrameState(JS_FRAME, BailoutId::None(), |
- OutputFrameStateCombine::Ignore()), |
+ common()->FrameState(BailoutId::None(), |
+ OutputFrameStateCombine::Ignore(), nullptr), |
state_values, state_values, state_values, NoContextConstant(), |
UndefinedConstant(), graph()->start()); |
cached_nodes_[kEmptyFrameState] = empty_frame_state; |