Title: [190710] tags/Safari-602.1.6/Source/_javascript_Core
Revision
190710
Author
[email protected]
Date
2015-10-08 00:17:28 -0700 (Thu, 08 Oct 2015)

Log Message

Merged r190692.  rdar://problem/22998598

Modified Paths

Diff

Modified: tags/Safari-602.1.6/Source/_javascript_Core/ChangeLog (190709 => 190710)


--- tags/Safari-602.1.6/Source/_javascript_Core/ChangeLog	2015-10-08 06:44:49 UTC (rev 190709)
+++ tags/Safari-602.1.6/Source/_javascript_Core/ChangeLog	2015-10-08 07:17:28 UTC (rev 190710)
@@ -1,3 +1,18 @@
+2015-10-08  Babak Shafiei  <[email protected]>
+
+        Merge r190692.
+
+    2015-10-07  Mark Lam  <[email protected]>
+
+            Disable tail calls because it is breaking some sites.
+            https://bugs.webkit.org/show_bug.cgi?id=149900
+
+            Reviewed by Saam Barati.
+
+            This is until we fix whatever the breakage is.
+
+            * runtime/Options.h:
+
 2015-10-06  Mark Lam  <[email protected]>
 
         Factoring out op_sub baseline code generation into JITSubGenerator.

Modified: tags/Safari-602.1.6/Source/_javascript_Core/runtime/Options.h (190709 => 190710)


--- tags/Safari-602.1.6/Source/_javascript_Core/runtime/Options.h	2015-10-08 06:44:49 UTC (rev 190709)
+++ tags/Safari-602.1.6/Source/_javascript_Core/runtime/Options.h	2015-10-08 07:17:28 UTC (rev 190710)
@@ -131,7 +131,7 @@
     v(bool, forceProfilerBytecodeGeneration, false, nullptr) \
     \
     v(bool, enableFunctionDotArguments, true, nullptr) \
-    v(bool, enableTailCalls, true, nullptr) \
+    v(bool, enableTailCalls, false, nullptr) \
     \
     /* showDisassembly implies showDFGDisassembly. */ \
     v(bool, showDisassembly, false, "dumps disassembly of all JIT compiled code upon compilation") \
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to