| Index: src/compiler/js-inlining.cc
|
| diff --git a/src/compiler/js-inlining.cc b/src/compiler/js-inlining.cc
|
| index 75db7e49f919ac9d86bb90c14f856db8f2b123eb..73cc1201d8f13a3efeb4ce421d17d4a6c809f725 100644
|
| --- a/src/compiler/js-inlining.cc
|
| +++ b/src/compiler/js-inlining.cc
|
| @@ -218,7 +218,8 @@ Reduction JSInliner::InlineCall(Node* call, Node* new_target, Node* context,
|
| ReplaceWithValue(call, value_output, effect_output, control_output);
|
| return Changed(value_output);
|
| } else {
|
| - ReplaceWithValue(call, call, call, jsgraph()->Dead());
|
| + ReplaceWithValue(call, jsgraph()->Dead(), jsgraph()->Dead(),
|
| + jsgraph()->Dead());
|
| return Changed(call);
|
| }
|
| }
|
|
|