| Index: src/arm64/cpu-arm64.h
|
| diff --git a/src/arm64/cpu-arm64.h b/src/arm64/cpu-arm64.h
|
| index 009cead82a08ebd207f58517fa538efbc25745d0..90ad716e42d921867c612ad9e7c414058972574a 100644
|
| --- a/src/arm64/cpu-arm64.h
|
| +++ b/src/arm64/cpu-arm64.h
|
| @@ -57,9 +57,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.
|
|
|