Changeset 258062 in webkit
- Timestamp:
- Mar 6, 2020, 9:53:34 PM (5 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r258059 r258062 1 2020-03-06 David Kilzer <ddkilzer@apple.com> 2 3 REGRESSION (r258038): Build failure on Windows 10 bots 4 <https://bugs.webkit.org/show_bug.cgi?id=208731> 5 <rdar://problem/59222568> 6 7 * assembler/testmasm.cpp: 8 (JSC::testCompareDouble): 9 (JSC::testCompareDoubleSameArg): 10 (JSC::testMoveConditionallyFloatingPoint): 11 (JSC::testMoveConditionallyFloatingPointSameArg): 12 - Add RELEASE_ASSERT_NOT_REACHED() statements to try to fix the 13 bots. 14 1 15 2020-03-06 Yusuke Suzuki <ysuzuki@apple.com> 2 16 -
trunk/Source/JavaScriptCore/assembler/testmasm.cpp
r258038 r258062 530 530 return isUnordered(a) || isUnordered(b) || (a <= b); 531 531 } // switch 532 RELEASE_ASSERT_NOT_REACHED(); 532 533 }; 533 534 … … 601 602 return isUnordered(a) || (a <= a); 602 603 } // switch 604 RELEASE_ASSERT_NOT_REACHED(); 603 605 }; 604 606 … … 725 727 return isUnordered(a) || isUnordered(b) || (a <= b) ? selectionA : selectionB; 726 728 } // switch 729 RELEASE_ASSERT_NOT_REACHED(); 727 730 }; 728 731 … … 1297 1300 return isUnordered(a) || (a <= a) ? selectionA : selectionB; 1298 1301 } // switch 1302 RELEASE_ASSERT_NOT_REACHED(); 1299 1303 }; 1300 1304
Note:
See TracChangeset
for help on using the changeset viewer.