Index: src/compiler/ia32/code-generator-ia32.cc |
diff --git a/src/compiler/ia32/code-generator-ia32.cc b/src/compiler/ia32/code-generator-ia32.cc |
index 81b047531677c4b2cbdae3649cf858aab7177b51..3c2b486eeb736593cb60dc2105d4b0d5df1f69e6 100644 |
--- a/src/compiler/ia32/code-generator-ia32.cc |
+++ b/src/compiler/ia32/code-generator-ia32.cc |
@@ -658,6 +658,9 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction( |
case kIeee754Float64Exp: |
ASSEMBLE_IEEE754_UNOP(exp); |
break; |
+ case kIeee754Float64Atanh: |
+ ASSEMBLE_IEEE754_UNOP(atanh); |
+ break; |
case kIeee754Float64Log: |
ASSEMBLE_IEEE754_UNOP(log); |
break; |
@@ -670,6 +673,12 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction( |
case kIeee754Float64Log10: |
ASSEMBLE_IEEE754_UNOP(log10); |
break; |
+ case kIeee754Float64Cbrt: |
+ ASSEMBLE_IEEE754_UNOP(cbrt); |
+ break; |
+ case kIeee754Float64Expm1: |
+ ASSEMBLE_IEEE754_UNOP(expm1); |
+ break; |
case kIA32Add: |
if (HasImmediateInput(instr, 1)) { |
__ add(i.InputOperand(0), i.InputImmediate(1)); |