| Index: src/mips/full-codegen-mips.cc
|
| diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc
|
| index 03f2774f48c359ab16ca4583c1e55706d36ffaba..93cec9f8a652b2f39c34023863d94d1a79a891ca 100644
|
| --- a/src/mips/full-codegen-mips.cc
|
| +++ b/src/mips/full-codegen-mips.cc
|
| @@ -3038,7 +3038,7 @@ void FullCodeGenerator::EmitRandomHeapNumber(CallRuntime* expr) {
|
| __ lw(a0, FieldMemOperand(a0, GlobalObject::kNativeContextOffset));
|
| __ CallCFunction(ExternalReference::random_uint32_function(isolate()), 1);
|
|
|
| - CpuFeatures::Scope scope(FPU);
|
| + CpuFeatureScope scope(masm(), FPU);
|
| // 0x41300000 is the top half of 1.0 x 2^20 as a double.
|
| __ li(a1, Operand(0x41300000));
|
| // Move 0x41300000xxxxxxxx (x = random bits in v0) to FPU.
|
|
|