Changeset 279923 in webkit
- Timestamp:
- Jul 14, 2021, 3:04:39 PM (4 years ago)
- Location:
- trunk/JSTests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JSTests/ChangeLog
r279915 r279923 1 2021-07-14 Keith Miller <keith_miller@apple.com> 2 3 Unreviewed, test gardening. 4 5 * stress/bit-op-with-object-returning-int32.js: 6 * stress/bitwise-not-fixup-rules.js: 7 (jscOptions): 8 1 9 2021-07-14 Mark Lam <mark.lam@apple.com> 2 10 -
trunk/JSTests/stress/bit-op-with-object-returning-int32.js
r279909 r279923 10 10 noInline(bitAnd); 11 11 12 if ( jscOptions().useExecutableAllocationFuzz !== true) {12 if (!jscOptions().useExecutableAllocationFuzz) { 13 13 14 14 var o = { valueOf: () => 0b1101 }; -
trunk/JSTests/stress/bitwise-not-fixup-rules.js
r279909 r279923 11 11 noInline(foo); 12 12 13 if ( jscOptions().useExecutableAllocationFuzz !== true) {13 if (!jscOptions().useExecutableAllocationFuzz) { 14 14 let c = 0; 15 15 let o = {
Note:
See TracChangeset
for help on using the changeset viewer.