From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../jit-test/tests/wasm/tail-calls/bug1871605.js | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 js/src/jit-test/tests/wasm/tail-calls/bug1871605.js (limited to 'js/src/jit-test/tests/wasm/tail-calls/bug1871605.js') diff --git a/js/src/jit-test/tests/wasm/tail-calls/bug1871605.js b/js/src/jit-test/tests/wasm/tail-calls/bug1871605.js new file mode 100644 index 0000000000..84f37a3e42 --- /dev/null +++ b/js/src/jit-test/tests/wasm/tail-calls/bug1871605.js @@ -0,0 +1,30 @@ +// |jit-test| --more-compartments; skip-variant-if: --wasm-test-serialization, true; skip-variant-if: --wasm-compiler=ion, true; skip-if: !wasmGcEnabled() + +var dbg = newGlobal() +dbg.parent = this +dbg.eval(` + Debugger(parent).onEnterFrame = function() {} +`) + +var wasm = `(module + (type $t1 (array (mut i32))) + (type $t2 (array (mut (ref null $t1)))) + (import "" "c" + (func $c + (param i32 (ref $t2)) + (result (ref $t2)))) + (func $f (result (ref $t2)) + (return_call $c + (i32.const 0) + (array.new $t2 (ref.null $t1) (i32.const 1500))) + ) + (func (export "test") + (drop (call $f)) + ) +)`; + +var ins = wasmEvalText(wasm, {"": { c() {},}}); +assertErrorMessage( + () => ins.exports.test(), + TypeError, /bad type/ +); -- cgit v1.2.3