summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/regress/bug1866545.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/wasm/regress/bug1866545.js')
-rw-r--r--js/src/jit-test/tests/wasm/regress/bug1866545.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/wasm/regress/bug1866545.js b/js/src/jit-test/tests/wasm/regress/bug1866545.js
new file mode 100644
index 0000000000..6c6a92c0ab
--- /dev/null
+++ b/js/src/jit-test/tests/wasm/regress/bug1866545.js
@@ -0,0 +1,25 @@
+// Tests stack alignment during tail calls (in Ion).
+
+var ins = wasmEvalText(`
+ (module
+ (func $trap
+ (param $i i32) (param $arr i32)
+ unreachable
+ )
+ (func $second
+ (return_call $trap
+ (i32.const 33)
+ (i32.const 66)
+ )
+ )
+ (func (export "test")
+ (call $second)
+ )
+ )
+`);
+
+assertErrorMessage(
+ () => ins.exports.test(),
+ WebAssembly.RuntimeError,
+ "unreachable executed",
+);