Changeset 66991 in webkit


Ignore:
Timestamp:
Sep 8, 2010 9:52:44 AM (14 years ago)
Author:
jocelyn.turcotte@nokia.com
Message:

2010-09-08 Jocelyn Turcotte <jocelyn.turcotte@nokia.com>

Reviewed by Andreas Kling.

Re-Disable JIT for MSVC 64bit to fix the build on this compiler.
https://bugs.webkit.org/show_bug.cgi?id=45382

It was enabled in the cleanup made in r64176, though it is still
not implemented.

  • wtf/Platform.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r66986 r66991  
     12010-09-08  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
     2
     3        Reviewed by Andreas Kling.
     4
     5        Re-Disable JIT for MSVC 64bit to fix the build on this compiler.
     6        https://bugs.webkit.org/show_bug.cgi?id=45382
     7
     8        It was enabled in the cleanup made in r64176, though it is still
     9        not implemented.
     10
     11        * wtf/Platform.h:
     12
    1132010-09-08  Martin Robinson  <mrobinson@igalia.com>
    214
  • trunk/JavaScriptCore/wtf/Platform.h

    r66846 r66991  
    949949#endif
    950950
     951/* JIT is not implemented for 64 bit on MSVC */
     952#if !defined(ENABLE_JIT) && COMPILER(MSVC) && CPU(X86_64)
     953#define ENABLE_JIT 0
     954#endif
     955
    951956/* The JIT is enabled by default on all x86, x64-64, ARM & MIPS platforms. */
    952957#if !defined(ENABLE_JIT) \
Note: See TracChangeset for help on using the changeset viewer.