Changeset 95876 in webkit


Ignore:
Timestamp:
Sep 23, 2011 3:58:34 PM (13 years ago)
Author:
fpizlo@apple.com
Message:

ValueToDouble handling in prediction propagation should be ASSERT_NOT_REACHED
https://bugs.webkit.org/show_bug.cgi?id=68724

Reviewed by Oliver Hunt.

  • dfg/DFGPropagator.cpp:

(JSC::DFG::Propagator::propagateNodePredictions):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r95872 r95876  
     12011-09-23  Filip Pizlo  <fpizlo@apple.com>
     2
     3        ValueToDouble handling in prediction propagation should be ASSERT_NOT_REACHED
     4        https://bugs.webkit.org/show_bug.cgi?id=68724
     5
     6        Reviewed by Oliver Hunt.
     7
     8        * dfg/DFGPropagator.cpp:
     9        (JSC::DFG::Propagator::propagateNodePredictions):
     10
    1112011-09-23  Oliver Hunt  <oliver@apple.com>
    212
  • trunk/Source/JavaScriptCore/dfg/DFGPropagator.cpp

    r95851 r95876  
    402402
    403403        case ValueToDouble: {
    404             // FIXME: should we predict double or number here?
     404            // This node should never be visible at this stage of compilation. It is
     405            // inserted by fixup(), which follows this phase.
     406            ASSERT_NOT_REACHED();
    405407            break;
    406408        }
Note: See TracChangeset for help on using the changeset viewer.