Changeset 262517 in webkit
- Timestamp:
- Jun 3, 2020, 3:15:59 PM (5 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r262513 r262517 1 2020-06-03 Mark Lam <mark.lam@apple.com> 2 3 Gardening: fix broken Windows debug build. 4 https://bugs.webkit.org/show_bug.cgi?id=212680 5 6 Not reviewed. 7 8 * dfg/DFGDoesGCCheck.cpp: 9 (JSC::DFG::DoesGCCheck::verifyCanGC): 10 * dfg/DFGDoesGCCheck.h: 11 1 12 2020-06-03 Mark Lam <mark.lam@apple.com> 2 13 -
trunk/Source/JavaScriptCore/dfg/DFGDoesGCCheck.cpp
r262513 r262517 40 40 extern const char* dfgOpNames[]; 41 41 42 JS_EXPORT_PRIVATEvoid DoesGCCheck::verifyCanGC(VM& vm)42 void DoesGCCheck::verifyCanGC(VM& vm) 43 43 { 44 44 if (!expectDoesGC()) { -
trunk/Source/JavaScriptCore/dfg/DFGDoesGCCheck.h
r262513 r262517 81 81 bool isSpecial() { return specialIndex(); } 82 82 83 void verifyCanGC(VM&);83 JS_EXPORT_PRIVATE void verifyCanGC(VM&); 84 84 85 85 private:
Note:
See TracChangeset
for help on using the changeset viewer.