Changeset 167061 in webkit


Ignore:
Timestamp:
Apr 9, 2014 8:55:29 PM (10 years ago)
Author:
mark.lam@apple.com
Message:

Temporarily disable the JIT for the Windows port.
<https://webkit.org/b/131470>

Reviewed by Brent Fulgham.

This is a temporary stop gap measure to green the Windows bots until
we have a fix for https://webkit.org/b/131182.

  • runtime/Options.cpp:

(JSC::recomputeDependentOptions):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r167059 r167061  
     12014-04-09  Mark Lam  <mark.lam@apple.com>
     2
     3        Temporarily disable the JIT for the Windows port.
     4        <https://webkit.org/b/131470>
     5
     6        Reviewed by Brent Fulgham.
     7
     8        This is a temporary stop gap measure to green the Windows bots until
     9        we have a fix for https://webkit.org/b/131182.
     10
     11        * runtime/Options.cpp:
     12        (JSC::recomputeDependentOptions):
     13
    1142014-04-09  Juergen Ributzka  <juergen@apple.com>
    215
  • trunk/Source/JavaScriptCore/runtime/Options.cpp

    r166837 r167061  
    226226#if !ENABLE(FTL_JIT)
    227227    Options::useFTLJIT() = false;
     228#endif
     229#if OS(WINDOWS)
     230    // Temporarily disable the JIT on Windows until we have a fix for
     231    // https://webkit.org/b/131182.
     232    Options::useJIT() = false;
    228233#endif
    229234
Note: See TracChangeset for help on using the changeset viewer.