Changeset 194383 in webkit
- Timestamp:
- Dec 22, 2015, 6:33:48 PM (10 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r194382 r194383 1 2015-12-22 Filip Pizlo <fpizlo@apple.com> 2 3 FTL B3 should use the right type for comparison slow paths 4 https://bugs.webkit.org/show_bug.cgi?id=152521 5 6 Reviewed by Saam Barati. 7 8 Fixes a small goof that was leading to B3 validation failures. 9 10 * ftl/FTLLowerDFGToLLVM.cpp: 11 (JSC::FTL::DFG::LowerDFGToLLVM::nonSpeculativeCompare): 12 1 13 2015-12-22 Filip Pizlo <fpizlo@apple.com> 2 14 -
trunk/Source/JavaScriptCore/ftl/FTLLowerDFGToLLVM.cpp
r194372 r194383 7368 7368 m_out.appendTo(slowPath, continuation); 7369 7369 ValueFromBlock slowResult = m_out.anchor(m_out.notNull(vmCall( 7370 m_out. boolean, m_out.operation(helperFunction), m_callFrame, left, right)));7370 m_out.intPtr, m_out.operation(helperFunction), m_callFrame, left, right))); 7371 7371 m_out.jump(continuation); 7372 7372
Note:
See TracChangeset
for help on using the changeset viewer.