Index: src/compiler/machine-operator.cc |
diff --git a/src/compiler/machine-operator.cc b/src/compiler/machine-operator.cc |
index 84e504f08118e3bbc5569cdbe315b99c198ba9bd..10e2b32301fd4ee84248be74f4210505eb5bdba7 100644 |
--- a/src/compiler/machine-operator.cc |
+++ b/src/compiler/machine-operator.cc |
@@ -471,6 +471,12 @@ const Operator* MachineOperatorBuilder::CheckedStore( |
return nullptr; |
} |
+// On 32 bit platforms we need to get a reference to a Word64Popcnt operator for |
+// later lowering, even though 32 bit platforms don't support Word64Popcnt. |
+const Operator* MachineOperatorBuilder::Word64PopcntPlaceholder() { |
+ return &cache_.kWord64Popcnt; |
+} |
+ |
} // namespace compiler |
} // namespace internal |
} // namespace v8 |