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 265fa062192f4cbac6b48c428efe9cae95864807..4df9af21f7e2b1e469e939e4164cbc214a5c6d21 100644 |
--- a/src/compiler/x64/code-generator-x64.cc |
+++ b/src/compiler/x64/code-generator-x64.cc |
@@ -643,7 +643,7 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) { |
auto result = i.OutputRegister(); |
auto input = i.InputDoubleRegister(0); |
auto ool = new (zone()) OutOfLineTruncateDoubleToI(this, result, input); |
- __ cvttsd2siq(result, input); |
+ __ Cvttsd2siq(result, input); |
__ cmpq(result, Immediate(1)); |
__ j(overflow, ool->entry()); |
__ bind(ool->exit()); |
@@ -913,16 +913,16 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) { |
break; |
case kSSEFloat64ToInt32: |
if (instr->InputAt(0)->IsDoubleRegister()) { |
- __ cvttsd2si(i.OutputRegister(), i.InputDoubleRegister(0)); |
+ __ Cvttsd2si(i.OutputRegister(), i.InputDoubleRegister(0)); |
} else { |
- __ cvttsd2si(i.OutputRegister(), i.InputOperand(0)); |
+ __ Cvttsd2si(i.OutputRegister(), i.InputOperand(0)); |
} |
break; |
case kSSEFloat64ToUint32: { |
if (instr->InputAt(0)->IsDoubleRegister()) { |
- __ cvttsd2siq(i.OutputRegister(), i.InputDoubleRegister(0)); |
+ __ Cvttsd2siq(i.OutputRegister(), i.InputDoubleRegister(0)); |
} else { |
- __ cvttsd2siq(i.OutputRegister(), i.InputOperand(0)); |
+ __ Cvttsd2siq(i.OutputRegister(), i.InputOperand(0)); |
} |
__ AssertZeroExtended(i.OutputRegister()); |
break; |