Revert "Performance-killing bug workaround for V8 on mingw"
authorBert Belder <bertbelder@gmail.com>
Mon, 20 Dec 2010 22:52:38 +0000 (23:52 +0100)
committerBert Belder <bertbelder@gmail.com>
Mon, 20 Dec 2010 22:52:38 +0000 (23:52 +0100)
This reverts commit 9a9edb0e8e6120b3b8a3868d0c44577111dd1857.

deps/v8/src/stub-cache.h

index 523f4aa..a7829a6 100644 (file)
@@ -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_;
   }