Index: src/compiler/ast-graph-builder.cc |
diff --git a/src/compiler/ast-graph-builder.cc b/src/compiler/ast-graph-builder.cc |
index c86d7035a7fba1efdadba4d3803762321fcd281b..be6c358617b782a0188170f2e96311db6621cc51 100644 |
--- a/src/compiler/ast-graph-builder.cc |
+++ b/src/compiler/ast-graph-builder.cc |
@@ -3734,7 +3734,7 @@ Node* AstGraphBuilder::BuildToBoolean(Node* input, TypeFeedbackId feedback_id) { |
Node* AstGraphBuilder::BuildToName(Node* input, BailoutId bailout_id) { |
if (Node* node = TryFastToName(input)) return node; |
Node* name = NewNode(javascript()->ToName(), input); |
- PrepareFrameState(name, bailout_id); |
+ PrepareFrameState(name, bailout_id, OutputFrameStateCombine::Push()); |
return name; |
} |