Changeset 155480 in webkit for trunk/Source/JavaScriptCore/dfg/DFGAbstractValue.cpp
- Timestamp:
- Sep 10, 2013, 2:55:45 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGAbstractValue.cpp
r153296 r155480 126 126 FiltrationResult AbstractValue::filter(SpeculatedType type) 127 127 { 128 if ( isClear())128 if ((m_type & type) == m_type) 129 129 return FiltrationOK; 130 131 if (type == SpecTop)132 return isClear() ? Contradiction : FiltrationOK;133 130 134 131 m_type &= type;
Note:
See TracChangeset
for help on using the changeset viewer.