| Index: runtime/vm/cpu_x64.h
|
| diff --git a/runtime/vm/cpu_x64.h b/runtime/vm/cpu_x64.h
|
| index c56ee642d7bace30b701336cee9d98cbfd3c520c..3e70fce99bd249a39b40dd7f772af48bc8d77212 100644
|
| --- a/runtime/vm/cpu_x64.h
|
| +++ b/runtime/vm/cpu_x64.h
|
| @@ -42,24 +42,12 @@ 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 sse2_supported() {
|
| - return HostCPUFeatures::sse2_supported();
|
| - }
|
| - static bool sse4_1_supported() {
|
| - return HostCPUFeatures::sse4_1_supported();
|
| - }
|
| - 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 sse2_supported() { return HostCPUFeatures::sse2_supported(); }
|
| + static bool sse4_1_supported() { return HostCPUFeatures::sse4_1_supported(); }
|
| + static bool double_truncate_round_supported() { return false; }
|
| };
|
|
|
| } // namespace dart
|
|
|