Ignore:
Timestamp:
Nov 4, 2019, 3:47:07 PM (6 years ago)
Author:
Truitt Savell
Message:

Unreviewed, rolling out r252015.

Broke the Windows build

Reverted changeset:

"Split ArithProfile into a Unary and a Binary version"
https://bugs.webkit.org/show_bug.cgi?id=202832
https://trac.webkit.org/changeset/252015

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/offlineasm/mips.rb

    r252015 r252021  
    528528            when /^(addi|subi)/
    529529                newList << node.riscLowerMalformedImmediatesRecurse(newList, -0x7fff..0x7fff)
    530             when "andi", "andp", "ori", "orp", "orh", "xori", "xorp"
     530            when "andi", "andp", "ori", "orp", "xori", "xorp"
    531531                newList << node.riscLowerMalformedImmediatesRecurse(newList, 0..0xffff)
    532532            else
     
    861861        when "andi", "andp"
    862862            emitMIPSCompact("and", "and", operands)
    863         when "ori", "orp", "orh"
     863        when "ori", "orp"
    864864            emitMIPSCompact("or", "orr", operands)
    865865        when "oris"
Note: See TracChangeset for help on using the changeset viewer.