diff options
Diffstat (limited to 'js/src/jit-test/tests/ion/bug1001382.js')
-rw-r--r-- | js/src/jit-test/tests/ion/bug1001382.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/bug1001382.js b/js/src/jit-test/tests/ion/bug1001382.js new file mode 100644 index 000000000..0c7044f2d --- /dev/null +++ b/js/src/jit-test/tests/ion/bug1001382.js @@ -0,0 +1,10 @@ +var i = 0; +var expectedmatch = ''; +var expectedmatches = new Array(); +addThis(); +expectedmatch = null; +addThis(); +function addThis() { + Array(-2147483648, -2147483648); + expectedmatches[i] = expectedmatch; +} |