Changeset 93298 in webkit for trunk/Source/JavaScriptCore
- Timestamp:
- Aug 18, 2011, 4:47:26 AM (14 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r93277 r93298 1 2011-08-18 Filip Pizlo <[email protected]> 2 3 [jsfunfuzz] DFG speculative JIT does divide-by-zero checks incorrectly 4 https://bugs.webkit.org/show_bug.cgi?id=66426 5 6 Reviewed by Oliver Hunt. 7 8 Changed the branchTestPtr to branchTest32. 9 10 * dfg/DFGSpeculativeJIT.cpp: 11 (JSC::DFG::SpeculativeJIT::compile): 12 1 13 2011-08-17 Thouraya ANDOLSI <[email protected]> 2 14 -
trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp
r93010 r93298 813 813 GPRReg op2Gpr = op2.gpr(); 814 814 815 speculationCheck(m_jit.branchTest Ptr(JITCompiler::Zero, op2Gpr));815 speculationCheck(m_jit.branchTest32(JITCompiler::Zero, op2Gpr)); 816 816 817 817 GPRReg temp2 = InvalidGPRReg;
Note:
See TracChangeset
for help on using the changeset viewer.