| Index: src/compiler/ppc/code-generator-ppc.cc | 
| diff --git a/src/compiler/ppc/code-generator-ppc.cc b/src/compiler/ppc/code-generator-ppc.cc | 
| index 06aff27e0a1967d39e7c2ff3ca126bfd85ab3c94..bdc8f5c379323c04fa473c9ccd9bab1f904c7e9e 100644 | 
| --- a/src/compiler/ppc/code-generator-ppc.cc | 
| +++ b/src/compiler/ppc/code-generator-ppc.cc | 
| @@ -1107,6 +1107,11 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) { | 
| __ ConvertInt64ToDouble(i.InputRegister(0), i.OutputDoubleRegister()); | 
| DCHECK_EQ(LeaveRC, i.OutputRCBit()); | 
| break; | 
| +    case kPPC_Uint64ToFloat32: | 
| +      __ ConvertUnsignedInt64ToFloat(i.InputRegister(0), | 
| +                                     i.OutputDoubleRegister()); | 
| +      DCHECK_EQ(LeaveRC, i.OutputRCBit()); | 
| +      break; | 
| case kPPC_Uint64ToDouble: | 
| __ ConvertUnsignedInt64ToDouble(i.InputRegister(0), | 
| i.OutputDoubleRegister()); | 
|  |