Index: src/compiler/js-inlining.cc |
diff --git a/src/compiler/js-inlining.cc b/src/compiler/js-inlining.cc |
index 117085db293671ef476ebc8fcd7ef3c29f579606..c1389f45d455413e37fcb20c791df573d7785a9f 100644 |
--- a/src/compiler/js-inlining.cc |
+++ b/src/compiler/js-inlining.cc |
@@ -454,7 +454,7 @@ Reduction JSInliner::ReduceJSCall(Node* node, Handle<JSFunction> function) { |
Node* context = NodeProperties::GetContextInput(node); |
Node* create = jsgraph_->graph()->NewNode(jsgraph_->javascript()->Create(), |
call.target(), call.new_target(), |
- context, effect); |
+ context, frame_state, effect); |
NodeProperties::ReplaceEffectInput(node, create); |
// TODO(4544): For now Runtime_GetNewTarget depends on the actual target to |
// coincide with the new target. Fix this! |