Ignore:
Timestamp:
Aug 15, 2013, 10:23:39 AM (12 years ago)
Author:
[email protected]
Message:

Remove bogus assertion.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h

    r154038 r154108  
    12751275        AbstractValue& value = forNode(node->child1());
    12761276
    1277         // It's only valid to issue a structure transition watchpoint if we already
    1278         // know that the watchpoint covers a superset of the structures known to
    1279         // belong to the set of future structures that this value may have.
    1280         // Currently, we only issue singleton watchpoints (that check one structure)
    1281         // and our futurePossibleStructure set can only contain zero, one, or an
    1282         // infinity of structures.
    1283         ASSERT(
    1284             value.m_futurePossibleStructure.isSubsetOf(StructureSet(node->structure()))
    1285             || m_graph.watchpoints().shouldAssumeMixedState(node->structure()->transitionWatchpointSet()));
    1286        
    12871277        filter(value, node->structure());
    12881278        m_state.setHaveStructures(true);
Note: See TracChangeset for help on using the changeset viewer.