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 a56fd92fff08ec87715935989b17939995a1dbae..4bb4d9465939908977f5b0fe036fa2ed643110b6 100644 |
--- a/src/compiler/x64/code-generator-x64.cc |
+++ b/src/compiler/x64/code-generator-x64.cc |
@@ -915,9 +915,9 @@ |
} |
case kSSEInt32ToFloat64: |
if (instr->InputAt(0)->IsRegister()) { |
- __ Cvtlsi2sd(i.OutputDoubleRegister(), i.InputRegister(0)); |
- } else { |
- __ Cvtlsi2sd(i.OutputDoubleRegister(), i.InputOperand(0)); |
+ __ cvtlsi2sd(i.OutputDoubleRegister(), i.InputRegister(0)); |
+ } else { |
+ __ cvtlsi2sd(i.OutputDoubleRegister(), i.InputOperand(0)); |
} |
break; |
case kSSEUint32ToFloat64: |