Bug 932687: Update value of dict mode in test; r?h4writer draft
authorBenjamin Bouvier <benj@benj.me>
Wed, 05 Oct 2016 14:51:10 +0200
changeset 421157 bf12c9f5ac812d95fbe6acf09df3412e19a5cbb5
parent 420713 18cb108e1c6263ac5ac0a641c7d32b3c8d42e64e
child 532994 c1a7a603263b03bfa7d15abb2c32225f3d19f7a5
push id31410
push userbenj@benj.me
push dateWed, 05 Oct 2016 12:51:43 +0000
reviewersh4writer
bugs932687
milestone52.0a1
Bug 932687: Update value of dict mode in test; r?h4writer MozReview-Commit-ID: FaFbhKhg2NM
js/src/jit-test/tests/pic/to-dictionary.js
--- a/js/src/jit-test/tests/pic/to-dictionary.js
+++ b/js/src/jit-test/tests/pic/to-dictionary.js
@@ -1,9 +1,9 @@
 function f() {
-    var MAX_HEIGHT = 64;
+    var MAX_HEIGHT = 512;
     var obj = {};
     for (var i = 0; i < MAX_HEIGHT; i++)
         obj['a' + i] = i;
     obj.m = function () { return 0; };
 }
 f();
 f();