Changeset 51939 in webkit for trunk/JavaScriptCore
- Timestamp:
- Dec 9, 2009, 11:47:41 PM (15 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r51933 r51939 1 2009-12-09 Maciej Stachowiak <[email protected]> 2 3 Reviewed by Oliver Hunt. 4 5 Google reader gets stuck in the "Loading..." state and does not complete 6 https://bugs.webkit.org/show_bug.cgi?id=32256 7 <rdar://problem/7456388> 8 9 * jit/JITArithmetic.cpp: 10 (JSC::JIT::emitSlow_op_jless): Fix some backward branches. 11 1 12 2009-12-09 Gavin Barraclough <[email protected]> 2 13 -
trunk/JavaScriptCore/jit/JITArithmetic.cpp
r51737 r51939 1615 1615 stubCall.addArgument(op2, regT2); 1616 1616 stubCall.call(); 1617 emitJumpSlowToHot(branchTest32( Zero, regT0), target);1617 emitJumpSlowToHot(branchTest32(NonZero, regT0), target); 1618 1618 1619 1619 } else if (isOperandConstantImmediateInt(op1)) { … … 1656 1656 stubCall.addArgument(regT1); 1657 1657 stubCall.call(); 1658 emitJumpSlowToHot(branchTest32( Zero, regT0), target);1658 emitJumpSlowToHot(branchTest32(NonZero, regT0), target); 1659 1659 1660 1660 } else {
Note:
See TracChangeset
for help on using the changeset viewer.