Changeset 238012 in webkit


Ignore:
Timestamp:
Nov 8, 2018 5:34:20 PM (5 years ago)
Author:
msaboff@apple.com
Message:

Options::useRegExpJIT() should use jitEnabledByDefault() just like useJIT()
https://bugs.webkit.org/show_bug.cgi?id=191444

Reviewed by Saam Barati.

  • runtime/Options.h:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r238011 r238012  
     12018-11-08  Michael Saboff  <msaboff@apple.com>
     2
     3        Options::useRegExpJIT() should use jitEnabledByDefault() just like useJIT()
     4        https://bugs.webkit.org/show_bug.cgi?id=191444
     5
     6        Reviewed by Saam Barati.
     7
     8        * runtime/Options.h:
     9
    1102018-11-08  Fujii Hironori  <Hironori.Fujii@sony.com>
    211
  • trunk/Source/JavaScriptCore/runtime/Options.h

    r238000 r238012  
    134134    v(bool, useBaselineJIT, true, Normal, "allows the baseline JIT to be used if true") \
    135135    v(bool, useDFGJIT, true, Normal, "allows the DFG JIT to be used if true") \
    136     v(bool, useRegExpJIT, true, Normal, "allows the RegExp JIT to be used if true") \
     136    v(bool, useRegExpJIT, jitEnabledByDefault(), Normal, "allows the RegExp JIT to be used if true") \
    137137    v(bool, useDOMJIT, is64Bit(), Normal, "allows the DOMJIT to be used if true") \
    138138    \
Note: See TracChangeset for help on using the changeset viewer.