Changeset 251904 in webkit


Ignore:
Timestamp:
Oct 31, 2019 8:23:14 PM (4 years ago)
Author:
Tadeu Zagallo
Message:

Disable Wasm interpreter on WinCairo
https://bugs.webkit.org/show_bug.cgi?id=203705

Reviewed by Yusuke Suzuki.

The interpreter does not build on WinCairo.

  • llint/LowLevelInterpreter.asm:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r251903 r251904  
     12019-10-31  Tadeu Zagallo  <tzagallo@apple.com>
     2
     3        Disable Wasm interpreter on WinCairo
     4        https://bugs.webkit.org/show_bug.cgi?id=203705
     5
     6        Reviewed by Yusuke Suzuki.
     7
     8        The interpreter does not build on WinCairo.
     9
     10        * llint/LowLevelInterpreter.asm:
     11
    1122019-10-31  Yusuke Suzuki  <ysuzuki@apple.com>
    213
  • trunk/Source/JavaScriptCore/llint/LowLevelInterpreter.asm

    r251886 r251904  
    20162016end
    20172017
    2018 if WEBASSEMBLY
     2018// FIXME: We should not need the X86_64_WIN condition here, since WEBASSEMBLY should already be false on Windows
     2019// https://bugs.webkit.org/show_bug.cgi?id=203716
     2020if WEBASSEMBLY and not X86_64_WIN
    20192021
    20202022entry(wasm, macro()
Note: See TracChangeset for help on using the changeset viewer.