Ignore:
Timestamp:
Feb 10, 2014, 5:41:44 PM (12 years ago)
Author:
[email protected]
Message:

Removes the inline assert from SpeculativeJIT's ReallocatePropertyStorage
https://bugs.webkit.org/show_bug.cgi?id=128566

Patch by Matthew Mirman <[email protected]> on 2014-02-10
Reviewed by Filip Pizlo.

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::compileReallocatePropertyStorage):

File:
1 edited

Legend:

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

    r163802 r163843  
    43004300        GPRResult result(this);
    43014301        callOperation(operationReallocateButterflyToGrowPropertyStorage, result.gpr(), baseGPR, newSize / sizeof(JSValue));
    4302        
    4303         MacroAssembler::Jump notNull = m_jit.branchTestPtr(MacroAssembler::NonZero, result.gpr());
    4304         m_jit.breakpoint();
    4305         notNull.link(&m_jit);
    43064302
    43074303        storageResult(result.gpr(), node);
Note: See TracChangeset for help on using the changeset viewer.