| Index: runtime/vm/cpu_arm64.h
|
| diff --git a/runtime/vm/cpu_arm64.h b/runtime/vm/cpu_arm64.h
|
| index 89799eace6a0dec26186f77cc8ea6bc8be53da89..df920d39a992590e16f19628dd0197e05d4fb499 100644
|
| --- a/runtime/vm/cpu_arm64.h
|
| +++ b/runtime/vm/cpu_arm64.h
|
| @@ -18,7 +18,7 @@ namespace dart {
|
| // additionally mock the options needed for the target architecture so that
|
| // they may be altered for testing.
|
|
|
| -class HostCPUFeatures: public AllStatic {
|
| +class HostCPUFeatures : public AllStatic {
|
| public:
|
| static void InitOnce();
|
| static void Cleanup();
|
| @@ -36,18 +36,10 @@ class HostCPUFeatures: public AllStatic {
|
|
|
| class TargetCPUFeatures : public AllStatic {
|
| public:
|
| - static void InitOnce() {
|
| - HostCPUFeatures::InitOnce();
|
| - }
|
| - static void Cleanup() {
|
| - HostCPUFeatures::Cleanup();
|
| - }
|
| - static const char* hardware() {
|
| - return HostCPUFeatures::hardware();
|
| - }
|
| - static bool double_truncate_round_supported() {
|
| - return false;
|
| - }
|
| + static void InitOnce() { HostCPUFeatures::InitOnce(); }
|
| + static void Cleanup() { HostCPUFeatures::Cleanup(); }
|
| + static const char* hardware() { return HostCPUFeatures::hardware(); }
|
| + static bool double_truncate_round_supported() { return false; }
|
| };
|
|
|
| } // namespace dart
|
|
|