diff options
Diffstat (limited to 'deps/v8/src')
-rw-r--r-- | deps/v8/src/stub-cache.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/deps/v8/src/stub-cache.h b/deps/v8/src/stub-cache.h index a7829a600e..523f4aa9b2 100644 --- a/deps/v8/src/stub-cache.h +++ b/deps/v8/src/stub-cache.h @@ -762,6 +762,11 @@ 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_; } |