Changeset 252825 in webkit for trunk/Source/JavaScriptCore/jit/JITInlines.h
- Timestamp:
- Nov 22, 2019, 8:45:14 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITInlines.h
r252684 r252825 180 180 } 181 181 182 ALWAYS_INLINE bool JIT::hasAnySlowCases(Vector<SlowCaseEntry>& slowCases, Vector<SlowCaseEntry>::iterator& iter, BytecodeIndex bytecodeIndex) 183 { 184 if (iter != slowCases.end() && iter->to == bytecodeIndex) 185 return true; 186 return false; 187 } 188 182 189 ALWAYS_INLINE void JIT::addSlowCase(Jump jump) 183 190 {
Note:
See TracChangeset
for help on using the changeset viewer.