summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/asm.js/testBug1117255.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/asm.js/testBug1117255.js')
-rw-r--r--js/src/jit-test/tests/asm.js/testBug1117255.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/asm.js/testBug1117255.js b/js/src/jit-test/tests/asm.js/testBug1117255.js
new file mode 100644
index 0000000000..6e1b9c2389
--- /dev/null
+++ b/js/src/jit-test/tests/asm.js/testBug1117255.js
@@ -0,0 +1,16 @@
+// |jit-test| skip-if: getBuildConfiguration()['wasi']
+
+function f(stdlib, foreign, buffer) {
+ "use asm";
+ var i32 = new stdlib.Int32Array(buffer);
+ function g(i) {
+ i=i|0;
+ var j=0;
+ for (; (j>>>0) < 100000; j=(j+1)|0)
+ i32[i>>2] = j;
+ }
+ return g
+}
+var g = f(this, null, new ArrayBuffer(1<<16));
+timeout(.1, function cb() { return true });
+g(1<<16);