summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/testNativeArgsRooting.js
blob: 1ce8259f2d494a12e3a08ea2ae005355acd682cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
if ('gczeal' in this)
(function () {
   (eval("\
       (function () {\
           for (var y = 0; y < 16; ++y) {\
               if (y % 3 == 2) {\
                   gczeal(1);\
               } else {\
                   print(0 / 0);\
               }\
           }\
       });\
   "))()
})();