diff options
author | Bert Belder <bertbelder@gmail.com> | 2010-12-20 23:52:38 +0100 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2010-12-20 23:52:38 +0100 |
commit | 2d8ab906135bd00a0e6b6966852d15d77408f824 (patch) | |
tree | 395daf6a51f0697d30d976432d87c38a671cf145 /deps/v8/src | |
parent | 0b763213083779c9457c8fadf2110485cce2c477 (diff) | |
download | node-new-2d8ab906135bd00a0e6b6966852d15d77408f824.tar.gz |
Revert "Performance-killing bug workaround for V8 on mingw"
This reverts commit 9a9edb0e8e6120b3b8a3868d0c44577111dd1857.
Diffstat (limited to 'deps/v8/src')
-rw-r--r-- | deps/v8/src/stub-cache.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/deps/v8/src/stub-cache.h b/deps/v8/src/stub-cache.h index 523f4aa9b2..a7829a600e 100644 --- a/deps/v8/src/stub-cache.h +++ b/deps/v8/src/stub-cache.h @@ -762,11 +762,6 @@ class CallOptimization BASE_EMBEDDED { } bool is_simple_api_call() const { - // As of V8 2.6.8 simple api call optimization causes segfaults on MINGW - // Disable it until this gets resolved -#ifdef __MINGW32__ - return false; -#endif return is_simple_api_call_; } |