Title: [259608] branches/safari-609.2.1.2-branch/Source/_javascript_Core/dfg/DFGSpeculativeJIT.cpp
Revision
259608
Author
[email protected]
Date
2020-04-06 16:17:35 -0700 (Mon, 06 Apr 2020)

Log Message

Unreviewed build fix. rdar://problem/61231922

Change DoubleEqualAndOrdered to DoubleEqual to avoid build failure.

Modified Paths

Diff

Modified: branches/safari-609.2.1.2-branch/Source/_javascript_Core/dfg/DFGSpeculativeJIT.cpp (259607 => 259608)


--- branches/safari-609.2.1.2-branch/Source/_javascript_Core/dfg/DFGSpeculativeJIT.cpp	2020-04-06 23:16:28 UTC (rev 259607)
+++ branches/safari-609.2.1.2-branch/Source/_javascript_Core/dfg/DFGSpeculativeJIT.cpp	2020-04-06 23:17:35 UTC (rev 259608)
@@ -13587,7 +13587,7 @@
         m_jit.loadDouble(MacroAssembler::BaseIndex(storageGPR, indexGPR, MacroAssembler::TimesEight), scratchFPR);
 
         if (mode.isSaneChain()) {
-            m_jit.compareDouble(MacroAssembler::DoubleEqualAndOrdered, scratchFPR, scratchFPR, resultGPR);
+            m_jit.compareDouble(MacroAssembler::DoubleEqual, scratchFPR, scratchFPR, resultGPR);
             break;
         }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to