Changeset 190692 in webkit


Ignore:
Timestamp:
Oct 7, 2015 3:09:04 PM (8 years ago)
Author:
mark.lam@apple.com
Message:

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:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r190690 r190692  
     12015-10-07  Mark Lam  <mark.lam@apple.com>
     2
     3        Disable tail calls because it is breaking some sites.
     4        https://bugs.webkit.org/show_bug.cgi?id=149900
     5
     6        Reviewed by Saam Barati.
     7
     8        This is until we fix whatever the breakage is.
     9
     10        * runtime/Options.h:
     11
    1122015-10-07  Sukolsak Sakshuwong  <sukolsak@gmail.com>
    213
  • trunk/Source/JavaScriptCore/runtime/Options.h

    r190561 r190692  
    132132    \
    133133    v(bool, enableFunctionDotArguments, true, nullptr) \
    134     v(bool, enableTailCalls, true, nullptr) \
     134    v(bool, enableTailCalls, false, nullptr) \
    135135    \
    136136    /* showDisassembly implies showDFGDisassembly. */ \
Note: See TracChangeset for help on using the changeset viewer.