Index: test/cctest/compiler/simplified-graph-builder.cc |
diff --git a/test/cctest/compiler/simplified-graph-builder.cc b/test/cctest/compiler/simplified-graph-builder.cc |
index e65ba2e0df48f60bbae08d62979274354efc7b75..c7e1e395adcac9174177d0837088452f1709b1a2 100644 |
--- a/test/cctest/compiler/simplified-graph-builder.cc |
+++ b/test/cctest/compiler/simplified-graph-builder.cc |
@@ -48,7 +48,7 @@ Node* SimplifiedGraphBuilder::MakeNode(const Operator* op, |
DCHECK(op->ValueInputCount() == value_input_count); |
DCHECK(!OperatorProperties::HasContextInput(op)); |
- DCHECK(!OperatorProperties::HasFrameStateInput(op)); |
+ DCHECK(OperatorProperties::GetFrameStateInputCount(op) == 0); |
Benedikt Meurer
2015/03/09 05:32:35
DCHECK_EQ
Jarin
2015/03/09 07:47:11
Done.
|
bool has_control = op->ControlInputCount() == 1; |
bool has_effect = op->EffectInputCount() == 1; |