| 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 fa973544be01613e00c54c393199cb2cc7c48a4c..628e93b46a093cc83ca2bb521279934c20d827e3 100644
|
| --- a/src/compiler/ppc/code-generator-ppc.cc
|
| +++ b/src/compiler/ppc/code-generator-ppc.cc
|
| @@ -998,6 +998,12 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
|
| __ popcntw(i.OutputRegister(), i.InputRegister(0));
|
| DCHECK_EQ(LeaveRC, i.OutputRCBit());
|
| break;
|
| +#if V8_TARGET_ARCH_PPC64
|
| + case kPPC_Popcnt64:
|
| + __ popcntd(i.OutputRegister(), i.InputRegister(0));
|
| + DCHECK_EQ(LeaveRC, i.OutputRCBit());
|
| + break;
|
| +#endif
|
| case kPPC_Cmp32:
|
| ASSEMBLE_COMPARE(cmpw, cmplw);
|
| break;
|
|
|