| Index: src/platform-win32.cc
|
| diff --git a/src/platform-win32.cc b/src/platform-win32.cc
|
| index 7ca5e55349016c9013de08f6ee6720e3a55a0d32..546d31c078f69f2d347090d266cf89e4dd26e047 100644
|
| --- a/src/platform-win32.cc
|
| +++ b/src/platform-win32.cc
|
| @@ -196,7 +196,6 @@ double fast_##name(double x) { \
|
| return (*fast_##name##_function)(x); \
|
| }
|
|
|
| -UNARY_MATH_FUNCTION(log, CreateTranscendentalFunction(TranscendentalCache::LOG))
|
| UNARY_MATH_FUNCTION(exp, CreateExpFunction())
|
| UNARY_MATH_FUNCTION(sqrt, CreateSqrtFunction())
|
|
|
| @@ -214,7 +213,6 @@ void MathSetup() {
|
| #ifdef _WIN64
|
| init_modulo_function();
|
| #endif
|
| - init_fast_log_function();
|
| // fast_exp is initialized lazily.
|
| init_fast_sqrt_function();
|
| }
|
|
|