Ignore:
Timestamp:
Aug 26, 2014, 9:46:10 AM (11 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r172940.
https://bugs.webkit.org/show_bug.cgi?id=136256

Caused assertions on fast/storage/serialized-script-
value.html, and possibly flakiness on more tests (Requested by
ap on #webkit).

Reverted changeset:

"FTL should be able to do polymorphic call inlining"
https://bugs.webkit.org/show_bug.cgi?id=135145
http://trac.webkit.org/changeset/172940

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/dfg/DFGValidate.cpp

    r172940 r172961  
    201201                VALIDATE((node), !mayExit(m_graph, node) || node->origin.forExit.isSet());
    202202                VALIDATE((node), !node->hasStructure() || !!node->structure());
    203                 VALIDATE((node), !node->hasCellOperand() || node->cellOperand()->value().isCell());
    204                 VALIDATE((node), !node->hasCellOperand() || !!node->cellOperand()->value());
     203                VALIDATE((node), !node->hasFunction() || node->function()->value().isFunction());
    205204                 
    206205                if (!(node->flags() & NodeHasVarArgs)) {
Note: See TracChangeset for help on using the changeset viewer.