| Index: src/x64/lithium-codegen-x64.cc | 
| diff --git a/src/x64/lithium-codegen-x64.cc b/src/x64/lithium-codegen-x64.cc | 
| index 6dde8a309ff754df1b498ac3b42b6036901422cd..c95742588d5778206e03b3936ce596f595dbba1b 100644 | 
| --- a/src/x64/lithium-codegen-x64.cc | 
| +++ b/src/x64/lithium-codegen-x64.cc | 
| @@ -3766,7 +3766,7 @@ void LCodeGen::DoMathFloor(LMathFloor* instr) { | 
| __ subq(output_reg, Immediate(1)); | 
| DeoptimizeIf(overflow, instr, Deoptimizer::kMinusZero); | 
| } | 
| -    __ roundsd(xmm_scratch, input_reg, Assembler::kRoundDown); | 
| +    __ roundsd(xmm_scratch, input_reg, kRoundDown); | 
| __ cvttsd2si(output_reg, xmm_scratch); | 
| __ cmpl(output_reg, Immediate(0x1)); | 
| DeoptimizeIf(overflow, instr, Deoptimizer::kOverflow); | 
|  |