Title: [258591] branches/safari-609-branch/Source/_javascript_Core
- Revision
- 258591
- Author
- [email protected]
- Date
- 2020-03-17 14:06:49 -0700 (Tue, 17 Mar 2020)
Log Message
Apply patch. rdar://problem/60396286
Cherry-pick r258062. rdar://problem/60396286
2020-03-06 David Kilzer <[email protected]>
REGRESSION (r258038): Build failure on Windows 10 bots
<https://bugs.webkit.org/show_bug.cgi?id=208731>
<rdar://problem/59222568>
* assembler/testmasm.cpp:
(JSC::testCompareDouble):
(JSC::testCompareDoubleSameArg):
(JSC::testMoveConditionallyFloatingPoint):
(JSC::testMoveConditionallyFloatingPointSameArg):
- Add RELEASE_ASSERT_NOT_REACHED() statements to try to fix the
bots.
Modified Paths
Diff
Modified: branches/safari-609-branch/Source/_javascript_Core/ChangeLog (258590 => 258591)
--- branches/safari-609-branch/Source/_javascript_Core/ChangeLog 2020-03-17 21:06:47 UTC (rev 258590)
+++ branches/safari-609-branch/Source/_javascript_Core/ChangeLog 2020-03-17 21:06:49 UTC (rev 258591)
@@ -2,6 +2,44 @@
Apply patch. rdar://problem/60396286
+ Cherry-pick r258062. rdar://problem/60396286
+
+ 2020-03-06 David Kilzer <[email protected]>
+
+ REGRESSION (r258038): Build failure on Windows 10 bots
+ <https://bugs.webkit.org/show_bug.cgi?id=208731>
+ <rdar://problem/59222568>
+
+ * assembler/testmasm.cpp:
+ (JSC::testCompareDouble):
+ (JSC::testCompareDoubleSameArg):
+ (JSC::testMoveConditionallyFloatingPoint):
+ (JSC::testMoveConditionallyFloatingPointSameArg):
+ - Add RELEASE_ASSERT_NOT_REACHED() statements to try to fix the
+ bots.
+
+ 2020-03-13 David Kilzer <[email protected]>
+
+ Cherry-pick r258062. rdar://problem/60396286
+
+ 2020-03-06 David Kilzer <[email protected]>
+
+ REGRESSION (r258038): Build failure on Windows 10 bots
+ <https://bugs.webkit.org/show_bug.cgi?id=208731>
+ <rdar://problem/59222568>
+
+ * assembler/testmasm.cpp:
+ (JSC::testCompareDouble):
+ (JSC::testCompareDoubleSameArg):
+ (JSC::testMoveConditionallyFloatingPoint):
+ (JSC::testMoveConditionallyFloatingPointSameArg):
+ - Add RELEASE_ASSERT_NOT_REACHED() statements to try to fix the
+ bots.
+
+2020-03-17 Alan Coon <[email protected]>
+
+ Apply patch. rdar://problem/60396286
+
Cherry-pick r258038. rdar://problem/60396286
2020-03-06 Mark Lam <[email protected]>
Modified: branches/safari-609-branch/Source/_javascript_Core/assembler/testmasm.cpp (258590 => 258591)
--- branches/safari-609-branch/Source/_javascript_Core/assembler/testmasm.cpp 2020-03-17 21:06:47 UTC (rev 258590)
+++ branches/safari-609-branch/Source/_javascript_Core/assembler/testmasm.cpp 2020-03-17 21:06:49 UTC (rev 258591)
@@ -529,6 +529,7 @@
case MacroAssembler::DoubleLessThanOrEqualOrUnordered:
return isUnordered(a) || isUnordered(b) || (a <= b);
} // switch
+ RELEASE_ASSERT_NOT_REACHED();
};
auto operands = doubleOperands();
@@ -600,6 +601,7 @@
case MacroAssembler::DoubleLessThanOrEqualOrUnordered:
return isUnordered(a) || (a <= a);
} // switch
+ RELEASE_ASSERT_NOT_REACHED();
};
auto operands = doubleOperands();
@@ -724,6 +726,7 @@
case MacroAssembler::DoubleLessThanOrEqualOrUnordered:
return isUnordered(a) || isUnordered(b) || (a <= b) ? selectionA : selectionB;
} // switch
+ RELEASE_ASSERT_NOT_REACHED();
};
for (auto a : operands) {
@@ -1296,6 +1299,7 @@
case MacroAssembler::DoubleLessThanOrEqualOrUnordered:
return isUnordered(a) || (a <= a) ? selectionA : selectionB;
} // switch
+ RELEASE_ASSERT_NOT_REACHED();
};
for (auto a : operands) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes