Index: src/compiler/graph-builder.cc |
diff --git a/src/compiler/graph-builder.cc b/src/compiler/graph-builder.cc |
index c41fd6fac58d615d895694712d12f3dc413f9087..f763a6eaaca7bbae4034bd6577bb67726b89fc7b 100644 |
--- a/src/compiler/graph-builder.cc |
+++ b/src/compiler/graph-builder.cc |
@@ -41,7 +41,7 @@ Node* StructuredGraphBuilder::MakeNode(Operator* op, int value_input_count, |
DCHECK(OperatorProperties::GetEffectInputCount(op) < 2); |
Node* result = NULL; |
- if (!has_context && !has_control && !has_effect) { |
+ if (!has_context && !has_framestate && !has_control && !has_effect) { |
result = graph()->NewNode(op, value_input_count, value_inputs); |
} else { |
int input_count_with_deps = value_input_count; |