Changeset 170119 in webkit


Ignore:
Timestamp:
Jun 18, 2014, 2:50:31 PM (11 years ago)
Author:
achristensen@apple.com
Message:

Unreviewed build fix after r170107.

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::compileArithMod):
Use non-template sub for armv7s.

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r170117 r170119  
     12014-06-18  Alex Christensen  <achristensen@webkit.org>
     2
     3        Unreviewed build fix after r170107.
     4
     5        * dfg/DFGSpeculativeJIT.cpp:
     6        (JSC::DFG::SpeculativeJIT::compileArithMod):
     7        Use non-template sub for armv7s.
     8
    192014-06-18  David Kilzer  <ddkilzer@apple.com>
    210
  • trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp

    r170107 r170119  
    34993499        // https://bugs.webkit.org/show_bug.cgi?id=126444
    35003500        speculationCheck(Overflow, JSValueRegs(), 0, m_jit.branchMul32(JITCompiler::Overflow, quotientThenRemainderGPR, divisorGPR, multiplyAnswerGPR));
     3501#if CPU(APPLE_ARMV7S)
     3502        m_jit.assembler().sub(quotientThenRemainderGPR, dividendGPR, multiplyAnswerGPR);
     3503#else
    35013504        m_jit.assembler().sub<32>(quotientThenRemainderGPR, dividendGPR, multiplyAnswerGPR);
     3505#endif
    35023506
    35033507        // If the user cares about negative zero, then speculate that we're not about
Note: See TracChangeset for help on using the changeset viewer.