| Index: src/arm64/cpu-arm64.h
|
| diff --git a/src/arm64/cpu-arm64.h b/src/arm64/cpu-arm64.h
|
| index 4f7b499791f6215a118d7d061c3675ff860170e2..0b7a7d7f1feab31931c1dd3207350c607b3a57f7 100644
|
| --- a/src/arm64/cpu-arm64.h
|
| +++ b/src/arm64/cpu-arm64.h
|
| @@ -28,15 +28,9 @@ class CpuFeatures : public AllStatic {
|
| return false;
|
| };
|
|
|
| - static bool IsFoundByRuntimeProbingOnly(CpuFeature f) {
|
| - ASSERT(initialized_);
|
| - // There are no optional features for ARM64.
|
| - return false;
|
| - }
|
| -
|
| + // There are no optional features for ARM64.
|
| static bool IsSafeForSnapshot(Isolate* isolate, CpuFeature f) {
|
| - return (IsSupported(f) &&
|
| - (!Serializer::enabled(isolate) || !IsFoundByRuntimeProbingOnly(f)));
|
| + return IsSupported(f);
|
| }
|
|
|
| // I and D cache line size in bytes.
|
|
|