From 2d8ab906135bd00a0e6b6966852d15d77408f824 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Mon, 20 Dec 2010 23:52:38 +0100 Subject: [PATCH] Revert "Performance-killing bug workaround for V8 on mingw" This reverts commit 9a9edb0e8e6120b3b8a3868d0c44577111dd1857. --- deps/v8/src/stub-cache.h | 5 ----- 1 file changed, 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_; }