Changeset 51939 in webkit for trunk/JavaScriptCore/jit/JITArithmetic.cpp
- Timestamp:
- Dec 9, 2009, 11:47:41 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.