Index: src/compiler/state-values-utils.cc |
diff --git a/src/compiler/state-values-utils.cc b/src/compiler/state-values-utils.cc |
index 1c23c8ab88cf2482f00d97084bf1f3913db299e1..77cc227038b8b234ff26460c894adb59024df49d 100644 |
--- a/src/compiler/state-values-utils.cc |
+++ b/src/compiler/state-values-utils.cc |
@@ -271,7 +271,7 @@ Node* StateValuesAccess::iterator::node() { |
MachineType StateValuesAccess::iterator::type() { |
Node* state = Top()->node; |
if (state->opcode() == IrOpcode::kStateValues) { |
- return kMachAnyTagged; |
+ return MachineType::AnyTagged(); |
} else { |
DCHECK_EQ(IrOpcode::kTypedStateValues, state->opcode()); |
const ZoneVector<MachineType>* types = |