| Index: src/mips/assembler-mips.cc
|
| diff --git a/src/mips/assembler-mips.cc b/src/mips/assembler-mips.cc
|
| index 3e02f32143c56cce9bbcbea2e682f86d33d2cdfc..0bb00b4c503f837acddb5e61e56a82d16443c561 100644
|
| --- a/src/mips/assembler-mips.cc
|
| +++ b/src/mips/assembler-mips.cc
|
| @@ -126,7 +126,8 @@ void CpuFeatures::Probe() {
|
| supported_ |= static_cast<uint64_t>(1) << FPU;
|
| #else
|
| // Probe for additional features not already known to be available.
|
| - if (OS::MipsCpuHasFeature(FPU)) {
|
| + CPU cpu;
|
| + if (cpu.has_fpu()) {
|
| // This implementation also sets the FPU flags if
|
| // runtime detection of FPU returns true.
|
| supported_ |= static_cast<uint64_t>(1) << FPU;
|
|
|