Title: [266747] trunk/Source/_javascript_Core
Revision
266747
Author
[email protected]
Date
2020-09-08 13:32:01 -0700 (Tue, 08 Sep 2020)

Log Message

re-enable TCSM on all OSs
https://bugs.webkit.org/show_bug.cgi?id=216281

Reviewed by Tadeu Zagallo.

* runtime/Options.cpp:
(JSC::defaultTCSMValue):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (266746 => 266747)


--- trunk/Source/_javascript_Core/ChangeLog	2020-09-08 20:24:33 UTC (rev 266746)
+++ trunk/Source/_javascript_Core/ChangeLog	2020-09-08 20:32:01 UTC (rev 266747)
@@ -1,3 +1,13 @@
+2020-09-08  Saam Barati  <[email protected]>
+
+        re-enable TCSM on all OSs
+        https://bugs.webkit.org/show_bug.cgi?id=216281
+
+        Reviewed by Tadeu Zagallo.
+
+        * runtime/Options.cpp:
+        (JSC::defaultTCSMValue):
+
 2020-09-08  Yusuke Suzuki  <[email protected]>
 
         [JSC] Special property caching should check Structure's cacheability

Modified: trunk/Source/_javascript_Core/runtime/Options.cpp (266746 => 266747)


--- trunk/Source/_javascript_Core/runtime/Options.cpp	2020-09-08 20:24:33 UTC (rev 266746)
+++ trunk/Source/_javascript_Core/runtime/Options.cpp	2020-09-08 20:32:01 UTC (rev 266747)
@@ -232,11 +232,7 @@
 
 static bool defaultTCSMValue()
 {
-#if CPU(X86_64) && ((PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED < 110000) || (PLATFORM(MACCATALYST) && __IPHONE_OS_VERSION_MIN_REQUIRED < 140000))
     return true;
-#else
-    return false;
-#endif
 }
 
 const char* const OptionRange::s_nullRangeStr = "<null>";
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to