⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 267731 in webkit


Ignore:
Timestamp:
Sep 29, 2020, 1:50:43 AM (6 years ago)
Author:
ysuzuki@apple.com
Message:

Unreviewed, attempt to fix WinCairo build failure
https://bugs.webkit.org/show_bug.cgi?id=217071

  • ftl/FTLOperations.h:
  • tools/JSDollarVM.cpp:
Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r267727 r267731  
     12020-09-29  Yusuke Suzuki  <ysuzuki@apple.com>
     2
     3        Unreviewed, attempt to fix WinCairo build failure
     4        https://bugs.webkit.org/show_bug.cgi?id=217071
     5
     6        * ftl/FTLOperations.h:
     7        * tools/JSDollarVM.cpp:
     8
    192020-09-28  Yusuke Suzuki  <ysuzuki@apple.com>
    210
  • trunk/Source/JavaScriptCore/ftl/FTLOperations.h

    r267727 r267731  
    4646JSC_DECLARE_JIT_OPERATION(operationTypeOfObjectAsTypeofType, int32_t, (JSGlobalObject*, JSCell*));
    4747
    48 JSC_DECLARE_JIT_OPERATION(operationReportBoundsCheckEliminationErrorAndCrash, void, (intptr_t codeBlockAsIntPtr, int32_t, int32_t, int32_t, int32_t, int32_t));
     48NO_RETURN_DUE_TO_CRASH JSC_DECLARE_JIT_OPERATION(operationReportBoundsCheckEliminationErrorAndCrash, void, (intptr_t codeBlockAsIntPtr, int32_t, int32_t, int32_t, int32_t, int32_t));
    4949
    5050} // extern "C"
  • trunk/Source/JavaScriptCore/tools/JSDollarVM.cpp

    r267727 r267731  
    17651765namespace JSC {
    17661766
    1767 static JSC_DECLARE_HOST_FUNCTION(functionCrash);
     1767static NO_RETURN_DUE_TO_CRASH JSC_DECLARE_HOST_FUNCTION(functionCrash);
    17681768static JSC_DECLARE_HOST_FUNCTION(functionBreakpoint);
    17691769static JSC_DECLARE_HOST_FUNCTION(functionDFGTrue);
Note: See TracChangeset for help on using the changeset viewer.