Index: src/arm64/cpu-arm64.h |
diff --git a/src/arm64/cpu-arm64.h b/src/arm64/cpu-arm64.h |
index f66e39af340733c0490126115ed1487cad7c02c2..ec3b19dc8472f5a18a39692eaf693ddc9c18a3cc 100644 |
--- a/src/arm64/cpu-arm64.h |
+++ b/src/arm64/cpu-arm64.h |
@@ -34,9 +34,9 @@ class CpuFeatures : public AllStatic { |
return false; |
} |
- static bool IsSafeForSnapshot(CpuFeature f) { |
+ static bool IsSafeForSnapshot(Isolate* isolate, CpuFeature f) { |
return (IsSupported(f) && |
- (!Serializer::enabled() || !IsFoundByRuntimeProbingOnly(f))); |
+ (!Serializer::enabled(isolate) || !IsFoundByRuntimeProbingOnly(f))); |
} |
// I and D cache line size in bytes. |