Ignore:
Timestamp:
Feb 4, 2014, 11:09:52 AM (12 years ago)
Author:
[email protected]
Message:

ASSERT in speculateMachineInt on 32-bit platforms
https://bugs.webkit.org/show_bug.cgi?id=128155

Reviewed by Filip Pizlo.

  • dfg/DFGPredictionPropagationPhase.cpp:

(JSC::DFG::PredictionPropagationPhase::propagate):

File:
1 edited

Legend:

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

    r162652 r163391  
    136136        case WeakJSConstant: {
    137137            SpeculatedType type = speculationFromValue(m_graph.valueOfJSConstant(node));
    138             if (type == SpecInt52AsDouble)
     138            if (type == SpecInt52AsDouble && enableInt52())
    139139                type = SpecInt52;
    140140            changed |= setPrediction(type);
Note: See TracChangeset for help on using the changeset viewer.