| Index: src/compiler/x64/code-generator-x64.cc
 | 
| diff --git a/src/compiler/x64/code-generator-x64.cc b/src/compiler/x64/code-generator-x64.cc
 | 
| index b95402a9ef28a05e2bbe967e898e2957e01f273a..b7f6b678b4e93decf29f2e387869ce1def623021 100644
 | 
| --- a/src/compiler/x64/code-generator-x64.cc
 | 
| +++ b/src/compiler/x64/code-generator-x64.cc
 | 
| @@ -910,7 +910,7 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
 | 
|        CpuFeatureScope sse_scope(masm(), SSE4_1);
 | 
|        RoundingMode const mode =
 | 
|            static_cast<RoundingMode>(MiscField::decode(instr->opcode()));
 | 
| -      __ roundsd(i.OutputDoubleRegister(), i.InputDoubleRegister(0), mode);
 | 
| +      __ Roundsd(i.OutputDoubleRegister(), i.InputDoubleRegister(0), mode);
 | 
|        break;
 | 
|      }
 | 
|      case kSSEFloat64ToFloat32:
 | 
| 
 |