Changeset 170119 in webkit
- Timestamp:
- Jun 18, 2014, 2:50:31 PM (11 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r170117 r170119 1 2014-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 1 9 2014-06-18 David Kilzer <ddkilzer@apple.com> 2 10 -
trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp
r170107 r170119 3499 3499 // https://bugs.webkit.org/show_bug.cgi?id=126444 3500 3500 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 3501 3504 m_jit.assembler().sub<32>(quotientThenRemainderGPR, dividendGPR, multiplyAnswerGPR); 3505 #endif 3502 3506 3503 3507 // If the user cares about negative zero, then speculate that we're not about
Note:
See TracChangeset
for help on using the changeset viewer.