Skip to content

Commit fe3574a

Browse files
DoesGCCheck does not use enough bits for nodeIndex
https://bugs.webkit.org/show_bug.cgi?id=230915 <rdar://83297515> Unreviewed. Forgot to add a try/catch in the test. * stress/verify-can-gc-node-index.js: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@283231 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 9f57bf8 commit fe3574a

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

JSTests/ChangeLog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2021-09-29 Saam Barati <[email protected]>
2+
3+
DoesGCCheck does not use enough bits for nodeIndex
4+
https://bugs.webkit.org/show_bug.cgi?id=230915
5+
<rdar://83297515>
6+
7+
Unreviewed. Forgot to add a try/catch in the test.
8+
9+
* stress/verify-can-gc-node-index.js:
10+
111
2021-09-28 Saam Barati <[email protected]>
212

313
DoesGCCheck does not use enough bits for nodeIndex

JSTests/stress/verify-can-gc-node-index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ function f() {
1616
f();
1717
f();
1818
};
19-
f();
19+
try {
20+
f();
21+
} catch { }

0 commit comments

Comments
 (0)