Index: src/ppc/disasm-ppc.cc |
diff --git a/src/ppc/disasm-ppc.cc b/src/ppc/disasm-ppc.cc |
index cc487ac86d8e5a7154f397e146c00e53917a5a35..7e869770c1ea438c500d1cff612713383b184a9c 100644 |
--- a/src/ppc/disasm-ppc.cc |
+++ b/src/ppc/disasm-ppc.cc |
@@ -613,6 +613,12 @@ void Decoder::DecodeExt2(Instruction* instr) { |
Format(instr, "popcntw 'ra, 'rs"); |
return; |
} |
+#if V8_TARGET_ARCH_PPC64 |
+ case POPCNTD: { |
+ Format(instr, "popcntd 'ra, 'rs"); |
+ return; |
+ } |
+#endif |
} |
switch (instr->Bits(10, 2) << 2) { |