Index: src/compiler/graph-replay.cc |
diff --git a/src/compiler/graph-replay.cc b/src/compiler/graph-replay.cc |
index 494d4313fe1a712f4722b16a48f6453760183e6a..0109adc9870b21be3a6be03610eb76a6f04f88fb 100644 |
--- a/src/compiler/graph-replay.cc |
+++ b/src/compiler/graph-replay.cc |
@@ -63,11 +63,11 @@ void GraphReplayPrinter::PrintReplayOpCreator(const Operator* op) { |
PrintF("%d", op->InputCount()); |
break; |
case IrOpcode::kEffectPhi: |
- PrintF("%d", OperatorProperties::GetEffectInputCount(op)); |
+ PrintF("%d", op->EffectInputCount()); |
break; |
case IrOpcode::kLoop: |
case IrOpcode::kMerge: |
- PrintF("%d", OperatorProperties::GetControlInputCount(op)); |
+ PrintF("%d", op->ControlInputCount()); |
break; |
default: |
break; |