Changeset 262517 in webkit


Ignore:
Timestamp:
Jun 3, 2020, 3:15:59 PM (5 years ago)
Author:
mark.lam@apple.com
Message:

Gardening: fix broken Windows debug build.
https://bugs.webkit.org/show_bug.cgi?id=212680

Not reviewed.

  • dfg/DFGDoesGCCheck.cpp:

(JSC::DFG::DoesGCCheck::verifyCanGC):

  • dfg/DFGDoesGCCheck.h:
Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r262513 r262517  
     12020-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
    1122020-06-03  Mark Lam  <mark.lam@apple.com>
    213
  • trunk/Source/JavaScriptCore/dfg/DFGDoesGCCheck.cpp

    r262513 r262517  
    4040extern const char* dfgOpNames[];
    4141
    42 JS_EXPORT_PRIVATE void DoesGCCheck::verifyCanGC(VM& vm)
     42void DoesGCCheck::verifyCanGC(VM& vm)
    4343{
    4444    if (!expectDoesGC()) {
  • trunk/Source/JavaScriptCore/dfg/DFGDoesGCCheck.h

    r262513 r262517  
    8181    bool isSpecial() { return specialIndex(); }
    8282
    83     void verifyCanGC(VM&);
     83    JS_EXPORT_PRIVATE void verifyCanGC(VM&);
    8484
    8585private:
Note: See TracChangeset for help on using the changeset viewer.