Changeset 241314 in webkit


Ignore:
Timestamp:
Feb 12, 2019 1:17:47 PM (5 years ago)
Author:
Michael Catanzaro
Message:

Unreviewed, fix -Wimplicit-fallthrough warning after r241140
https://bugs.webkit.org/show_bug.cgi?id=194399
<rdar://problem/47889777>

  • dfg/DFGDoesGC.cpp:

(JSC::DFG::doesGC):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r241304 r241314  
     12019-02-12  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        Unreviewed, fix -Wimplicit-fallthrough warning after r241140
     4        https://bugs.webkit.org/show_bug.cgi?id=194399
     5        <rdar://problem/47889777>
     6
     7        * dfg/DFGDoesGC.cpp:
     8        (JSC::DFG::doesGC):
     9
    1102019-02-12  Michael Catanzaro  <mcatanzaro@igalia.com>
    211
  • trunk/Source/JavaScriptCore/dfg/DFGDoesGC.cpp

    r241210 r241314  
    476476            return true;
    477477        }
     478        RELEASE_ASSERT_NOT_REACHED();
    478479
    479480    case LastNodeType:
    480481        RELEASE_ASSERT_NOT_REACHED();
    481         return true;
    482482    }
    483483   
    484484    RELEASE_ASSERT_NOT_REACHED();
    485     return true;
    486485}
    487486
Note: See TracChangeset for help on using the changeset viewer.