Changeset 242673 in webkit for trunk/Source/JavaScriptCore/jit/BinarySwitch.cpp
- Timestamp:
- Mar 9, 2019, 9:25:11 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/BinarySwitch.cpp
r241267 r242673 41 41 42 42 BinarySwitch::BinarySwitch(GPRReg value, const Vector<int64_t>& cases, Type type) 43 : m_value(value) 43 : m_type(type) 44 , m_value(value) 44 45 , m_weakRandom(globalCounter++) 45 46 , m_index(0) 46 47 , m_caseIndex(UINT_MAX) 47 , m_type(type)48 48 { 49 49 if (cases.isEmpty())
Note:
See TracChangeset
for help on using the changeset viewer.