| 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 2da3a8d5c4a64a9b61ddd905a1cac928b124a12c..850b3dcadf950731d0cca741c6155d6448d76905 100644
|
| --- a/src/compiler/ppc/code-generator-ppc.cc
|
| +++ b/src/compiler/ppc/code-generator-ppc.cc
|
| @@ -1101,6 +1101,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());
|
|
|