Title: [258062] trunk/Source/_javascript_Core
- Revision
- 258062
- Author
- [email protected]
- Date
- 2020-03-06 21:53:34 -0800 (Fri, 06 Mar 2020)
Log Message
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: trunk/Source/_javascript_Core/ChangeLog (258061 => 258062)
--- trunk/Source/_javascript_Core/ChangeLog 2020-03-07 05:46:09 UTC (rev 258061)
+++ trunk/Source/_javascript_Core/ChangeLog 2020-03-07 05:53:34 UTC (rev 258062)
@@ -1,3 +1,17 @@
+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-06 Yusuke Suzuki <[email protected]>
Put remaining fixed-sized cells into IsoSubspace
Modified: trunk/Source/_javascript_Core/assembler/testmasm.cpp (258061 => 258062)
--- trunk/Source/_javascript_Core/assembler/testmasm.cpp 2020-03-07 05:46:09 UTC (rev 258061)
+++ trunk/Source/_javascript_Core/assembler/testmasm.cpp 2020-03-07 05:53:34 UTC (rev 258062)
@@ -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