| Index: src/platform-win32.cc
|
| diff --git a/src/platform-win32.cc b/src/platform-win32.cc
|
| index 35411bfdad089b5c278652d9567f851a543be1ff..7ca5e55349016c9013de08f6ee6720e3a55a0d32 100644
|
| --- a/src/platform-win32.cc
|
| +++ b/src/platform-win32.cc
|
| @@ -133,11 +133,6 @@ intptr_t OS::MaxVirtualMemory() {
|
| }
|
|
|
|
|
| -double ceiling(double x) {
|
| - return ceil(x);
|
| -}
|
| -
|
| -
|
| #if V8_TARGET_ARCH_IA32
|
| static void MemMoveWrapper(void* dest, const void* src, size_t size) {
|
| memmove(dest, src, size);
|
| @@ -201,9 +196,6 @@ double fast_##name(double x) { \
|
| return (*fast_##name##_function)(x); \
|
| }
|
|
|
| -UNARY_MATH_FUNCTION(sin, CreateTranscendentalFunction(TranscendentalCache::SIN))
|
| -UNARY_MATH_FUNCTION(cos, CreateTranscendentalFunction(TranscendentalCache::COS))
|
| -UNARY_MATH_FUNCTION(tan, CreateTranscendentalFunction(TranscendentalCache::TAN))
|
| UNARY_MATH_FUNCTION(log, CreateTranscendentalFunction(TranscendentalCache::LOG))
|
| UNARY_MATH_FUNCTION(exp, CreateExpFunction())
|
| UNARY_MATH_FUNCTION(sqrt, CreateSqrtFunction())
|
| @@ -222,9 +214,6 @@ void MathSetup() {
|
| #ifdef _WIN64
|
| init_modulo_function();
|
| #endif
|
| - init_fast_sin_function();
|
| - init_fast_cos_function();
|
| - init_fast_tan_function();
|
| init_fast_log_function();
|
| // fast_exp is initialized lazily.
|
| init_fast_sqrt_function();
|
|
|