Index: src/compiler/state-values-utils.cc |
diff --git a/src/compiler/state-values-utils.cc b/src/compiler/state-values-utils.cc |
index 77cc227038b8b234ff26460c894adb59024df49d..a13bb3832e4f062fd93dd166ae68408f06429864 100644 |
--- a/src/compiler/state-values-utils.cc |
+++ b/src/compiler/state-values-utils.cc |
@@ -104,8 +104,7 @@ int StateValuesHashKey(Node** nodes, size_t count) { |
Node* StateValuesCache::GetValuesNodeFromCache(Node** nodes, size_t count) { |
StateValuesKey key(count, nodes); |
int hash = StateValuesHashKey(nodes, count); |
- ZoneHashMap::Entry* lookup = |
- hash_map_.LookupOrInsert(&key, hash, ZoneAllocationPolicy(zone())); |
+ ZoneHashMap::Entry* lookup = hash_map_.LookupOrInsert(&key, hash); |
DCHECK_NOT_NULL(lookup); |
Node* node; |
if (lookup->value == nullptr) { |