Ignore:
Timestamp:
Oct 26, 2018, 4:34:01 PM (7 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r237479 and r237484.
https://bugs.webkit.org/show_bug.cgi?id=190978

broke JSC on iOS (Requested by tadeuzagallo on #webkit).

Reverted changesets:

"New bytecode format for JSC"
https://bugs.webkit.org/show_bug.cgi?id=187373
https://trac.webkit.org/changeset/237479

"Gardening: Build fix after r237479."
https://bugs.webkit.org/show_bug.cgi?id=187373
https://trac.webkit.org/changeset/237484

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jit/JITDisassembler.cpp

    r237479 r237486  
    4242JITDisassembler::JITDisassembler(CodeBlock *codeBlock)
    4343    : m_codeBlock(codeBlock)
    44     , m_labelForBytecodeIndexInMainPath(codeBlock->instructions().size())
    45     , m_labelForBytecodeIndexInSlowPath(codeBlock->instructions().size())
     44    , m_labelForBytecodeIndexInMainPath(codeBlock->instructionCount())
     45    , m_labelForBytecodeIndexInSlowPath(codeBlock->instructionCount())
    4646{
    4747}
Note: See TracChangeset for help on using the changeset viewer.