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 94832dc18d28a3726a2c616f83e663a2bd1418d4..f123ca951846f1098ff5acd234d6c077ea2ebadd 100644 |
--- a/src/compiler/ppc/code-generator-ppc.cc |
+++ b/src/compiler/ppc/code-generator-ppc.cc |
@@ -1269,6 +1269,12 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction( |
case kIeee754Float64Log1p: |
ASSEMBLE_IEEE754_UNOP(log1p); |
break; |
+ case kIeee754Float64Log2: |
+ ASSEMBLE_IEEE754_UNOP(log2); |
+ break; |
+ case kIeee754Float64Log10: |
+ ASSEMBLE_IEEE754_UNOP(log10); |
+ break; |
case kPPC_Neg: |
__ neg(i.OutputRegister(), i.InputRegister(0), LeaveOE, i.OutputRCBit()); |
break; |