Index: src/compiler/graph-builder.cc |
diff --git a/src/compiler/graph-builder.cc b/src/compiler/graph-builder.cc |
index 5abf2c315c72b9328258f3af11d019c222aa32e8..504d25ec2f00fe42801b0a4a12d71fe993ba3f58 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_framestate && !has_control && !has_effect) { |
+ if (!has_context && !has_control && !has_effect) { |
result = graph()->NewNode(op, value_input_count, value_inputs); |
} else { |
int input_count_with_deps = value_input_count; |