| Index: src/x64/lithium-codegen-x64.cc
|
| diff --git a/src/x64/lithium-codegen-x64.cc b/src/x64/lithium-codegen-x64.cc
|
| index de47f6f4d1138011973e9e3ca45181c4f33302fd..5eb15b725bfd9a15ba11afa60e1c7a018317851f 100644
|
| --- a/src/x64/lithium-codegen-x64.cc
|
| +++ b/src/x64/lithium-codegen-x64.cc
|
| @@ -3474,7 +3474,7 @@ void LCodeGen::DoMathFloor(LUnaryMathOperation* instr) {
|
| XMMRegister input_reg = ToDoubleRegister(instr->value());
|
|
|
| if (CpuFeatures::IsSupported(SSE4_1)) {
|
| - CpuFeatures::Scope scope(SSE4_1);
|
| + CpuFeatureScope scope(masm(), SSE4_1);
|
| if (instr->hydrogen()->CheckFlag(HValue::kBailoutOnMinusZero)) {
|
| // Deoptimize if minus zero.
|
| __ movq(output_reg, input_reg);
|
|
|