| Index: runtime/vm/cpu_ia32.h
|
| diff --git a/runtime/vm/cpu_ia32.h b/runtime/vm/cpu_ia32.h
|
| index 3c3d83699d4f95f024368ac75546e0dc483247df..3c8d7af4fa4a81875224a593ea4564c711c98949 100644
|
| --- a/runtime/vm/cpu_ia32.h
|
| +++ b/runtime/vm/cpu_ia32.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 sse4_1_supported();
|
| - }
|
| + 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 sse4_1_supported(); }
|
| };
|
|
|
| } // namespace dart
|
|
|