| Index: src/compiler/ia32/code-generator-ia32.cc | 
| diff --git a/src/compiler/ia32/code-generator-ia32.cc b/src/compiler/ia32/code-generator-ia32.cc | 
| index 0c71bf3de2e44e5d49258950931d3504d6fa83d3..5a6dbc688a2f61fb845232d20878f6c0052dbfaa 100644 | 
| --- a/src/compiler/ia32/code-generator-ia32.cc | 
| +++ b/src/compiler/ia32/code-generator-ia32.cc | 
| @@ -351,7 +351,7 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) { | 
| __ sqrtsd(i.OutputDoubleRegister(), i.InputOperand(0)); | 
| break; | 
| case kSSECvtss2sd: | 
| -      __ cvtss2sd(i.OutputDoubleRegister(), i.InputDoubleRegister(0)); | 
| +      __ cvtss2sd(i.OutputDoubleRegister(), i.InputOperand(0)); | 
| break; | 
| case kSSECvtsd2ss: | 
| __ cvtsd2ss(i.OutputDoubleRegister(), i.InputDoubleRegister(0)); | 
|  |