Changeset 51939 in webkit
- Timestamp:
- Dec 9, 2009, 11:47:41 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 4 edited
-
JavaScriptCore/ChangeLog (modified) (1 diff)
-
JavaScriptCore/jit/JITArithmetic.cpp (modified) (2 diffs)
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/fast/js/codegen-jless-expected.txt (added)
-
LayoutTests/fast/js/codegen-jless.html (added)
-
LayoutTests/fast/js/script-tests/codegen-jless.js (added)
-
LayoutTests/platform/win/editing/selection/doubleclick-should-not-expand-across-lines.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r51933 r51939 1 2009-12-09 Maciej Stachowiak <mjs@apple.com> 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 <barraclough@apple.com> 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 { -
trunk/LayoutTests/ChangeLog
r51938 r51939 1 2009-12-09 Maciej Stachowiak <mjs@apple.com> 2 3 Reviewed by Oliver Hunt. 4 5 Test for: Google reader gets stuck in the "Loading..." state and does not complete 6 https://bugs.webkit.org/show_bug.cgi?id=32256 7 8 * fast/js/codegen-jless-expected.txt: Added. 9 * fast/js/codegen-jless.html: Added. 10 * fast/js/script-tests/codegen-jless.js: Added. 11 1 12 2009-12-09 Csaba Osztrogonác <ossy@webkit.org> 2 13 -
trunk/LayoutTests/platform/win/editing/selection/doubleclick-should-not-expand-across-lines.html
r49767 r51939 2 2 <html> 3 3 <head> 4 <link rel="stylesheet" href="../../../ ../fast/js/resources/js-test-style.css">5 <script src="../../../ ../fast/js/resources/js-test-pre.js"></script>4 <link rel="stylesheet" href="../../../fast/js/resources/js-test-style.css"> 5 <script src="../../../fast/js/resources/js-test-pre.js"></script> 6 6 </head> 7 7 <body> … … 9 9 <div id="console"></div> 10 10 <script src="script-tests/doubleclick-should-not-expand-across-lines.js"></script> 11 <script src="../../../ ../fast/js/resources/js-test-post.js"></script>11 <script src="../../../fast/js/resources/js-test-post.js"></script> 12 12 </body> 13 13 </html>
Note:
See TracChangeset
for help on using the changeset viewer.