Changeset 267731 in webkit
- Timestamp:
- Sep 29, 2020, 1:50:43 AM (6 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
ftl/FTLOperations.h (modified) (1 diff)
-
tools/JSDollarVM.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r267727 r267731 1 2020-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 1 9 2020-09-28 Yusuke Suzuki <ysuzuki@apple.com> 2 10 -
trunk/Source/JavaScriptCore/ftl/FTLOperations.h
r267727 r267731 46 46 JSC_DECLARE_JIT_OPERATION(operationTypeOfObjectAsTypeofType, int32_t, (JSGlobalObject*, JSCell*)); 47 47 48 JSC_DECLARE_JIT_OPERATION(operationReportBoundsCheckEliminationErrorAndCrash, void, (intptr_t codeBlockAsIntPtr, int32_t, int32_t, int32_t, int32_t, int32_t));48 NO_RETURN_DUE_TO_CRASH JSC_DECLARE_JIT_OPERATION(operationReportBoundsCheckEliminationErrorAndCrash, void, (intptr_t codeBlockAsIntPtr, int32_t, int32_t, int32_t, int32_t, int32_t)); 49 49 50 50 } // extern "C" -
trunk/Source/JavaScriptCore/tools/JSDollarVM.cpp
r267727 r267731 1765 1765 namespace JSC { 1766 1766 1767 static JSC_DECLARE_HOST_FUNCTION(functionCrash);1767 static NO_RETURN_DUE_TO_CRASH JSC_DECLARE_HOST_FUNCTION(functionCrash); 1768 1768 static JSC_DECLARE_HOST_FUNCTION(functionBreakpoint); 1769 1769 static JSC_DECLARE_HOST_FUNCTION(functionDFGTrue);
Note:
See TracChangeset
for help on using the changeset viewer.