| Index: runtime/vm/cpu_x64.cc
|
| diff --git a/runtime/vm/cpu_x64.cc b/runtime/vm/cpu_x64.cc
|
| index 3ad20d73a0d8af8dc67667965050dc44302db017..72b3478e8a5419d9caa046a60afc6f1dd827dde4 100644
|
| --- a/runtime/vm/cpu_x64.cc
|
| +++ b/runtime/vm/cpu_x64.cc
|
| @@ -40,9 +40,8 @@ bool HostCPUFeatures::initialized_ = false;
|
| void HostCPUFeatures::InitOnce() {
|
| CpuInfo::InitOnce();
|
| hardware_ = CpuInfo::GetCpuModel();
|
| - sse4_1_supported_ =
|
| - CpuInfo::FieldContains(kCpuInfoFeatures, "sse4_1") ||
|
| - CpuInfo::FieldContains(kCpuInfoFeatures, "sse4.1");
|
| + sse4_1_supported_ = CpuInfo::FieldContains(kCpuInfoFeatures, "sse4_1") ||
|
| + CpuInfo::FieldContains(kCpuInfoFeatures, "sse4.1");
|
|
|
| #if defined(DEBUG)
|
| initialized_ = true;
|
|
|