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 cc0f62064c6303476b7f82671f1a49cfab147b9e..b5f3bb5886d34405a8c1a7cd484370e0e8c390e3 100644 |
--- a/src/compiler/ppc/code-generator-ppc.cc |
+++ b/src/compiler/ppc/code-generator-ppc.cc |
@@ -1579,12 +1579,12 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction( |
ASSEMBLE_FLOAT_UNOP_RC(fneg, 0); |
break; |
case kPPC_Cntlz32: |
- __ cntlzw_(i.OutputRegister(), i.InputRegister(0)); |
+ __ cntlzw(i.OutputRegister(), i.InputRegister(0)); |
DCHECK_EQ(LeaveRC, i.OutputRCBit()); |
break; |
#if V8_TARGET_ARCH_PPC64 |
case kPPC_Cntlz64: |
- __ cntlzd_(i.OutputRegister(), i.InputRegister(0)); |
+ __ cntlzd(i.OutputRegister(), i.InputRegister(0)); |
DCHECK_EQ(LeaveRC, i.OutputRCBit()); |
break; |
#endif |