Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2010-12-21 01:52:38 +0300
committerBert Belder <bertbelder@gmail.com>2010-12-21 01:52:38 +0300
commit2d8ab906135bd00a0e6b6966852d15d77408f824 (patch)
tree395daf6a51f0697d30d976432d87c38a671cf145 /deps
parent0b763213083779c9457c8fadf2110485cce2c477 (diff)
Revert "Performance-killing bug workaround for V8 on mingw"
This reverts commit 9a9edb0e8e6120b3b8a3868d0c44577111dd1857.
Diffstat (limited to 'deps')
-rw-r--r--deps/v8/src/stub-cache.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/deps/v8/src/stub-cache.h b/deps/v8/src/stub-cache.h
index 523f4aa9b2a..a7829a600ea 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_;
}