| Index: src/builtins.h
|
| diff --git a/src/builtins.h b/src/builtins.h
|
| index 4b6bffad9e15ae14cec791de85677cb6ffbc9c0d..67ffabfe3e30a5cb655f6f938442a06c0bd9e0ae 100644
|
| --- a/src/builtins.h
|
| +++ b/src/builtins.h
|
| @@ -320,7 +320,6 @@
|
| V(MathAtan2, 3) \
|
| V(MathCeil, 2) \
|
| V(MathClz32, 2) \
|
| - V(MathExp, 2) \
|
| V(MathFloor, 2) \
|
| V(MathLog, 2) \
|
| V(MathLog1p, 2) \
|
| @@ -635,8 +634,6 @@
|
| static void Generate_MathCeil(CodeStubAssembler* assembler);
|
| // ES6 section 20.2.2.11 Math.clz32 ( x )
|
| static void Generate_MathClz32(CodeStubAssembler* assembler);
|
| - // ES6 section 20.2.2.14 Math.exp ( x )
|
| - static void Generate_MathExp(CodeStubAssembler* assembler);
|
| // ES6 section 20.2.2.16 Math.floor ( x )
|
| static void Generate_MathFloor(CodeStubAssembler* assembler);
|
| // ES6 section 20.2.2.20 Math.log ( x )
|
|
|