Changeset 202790 in webkit for trunk/Source/JavaScriptCore/dfg/DFGLICMPhase.cpp
- Timestamp:
- Jul 3, 2016, 10:46:39 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGLICMPhase.cpp
r201182 r202790 325 325 continue; 326 326 BasicBlock* subPreHeader = m_data[subLoop->index()].preHeader; 327 // We may not have given this loop a pre-header because either it didn't have exitOK 328 // or the header had multiple predecessors that it did not dominate. In that case the 329 // loop wouldn't be a hoisting candidate anyway, so we don't have to do anything. 330 if (!subPreHeader) 331 continue; 332 // The pre-header's tail may be unreachable, in which case we have nothing to do. 327 333 if (!subPreHeader->cfaDidFinish) 328 334 continue;
Note:
See TracChangeset
for help on using the changeset viewer.