summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/tail-calls/bug1851568.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/wasm/tail-calls/bug1851568.js')
-rw-r--r--js/src/jit-test/tests/wasm/tail-calls/bug1851568.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/wasm/tail-calls/bug1851568.js b/js/src/jit-test/tests/wasm/tail-calls/bug1851568.js
new file mode 100644
index 0000000000..b9622042d8
--- /dev/null
+++ b/js/src/jit-test/tests/wasm/tail-calls/bug1851568.js
@@ -0,0 +1,20 @@
+wasmFailValidateText(`(module
+ (func (result i32 f64)
+ i32.const 1
+ f64.const 2.0
+ )
+ (func (export "f") (result f64)
+ return_call 0
+ )
+)`, /type mismatch/);
+
+wasmFailValidateText(`(module
+ (func (result i32 f64)
+ i32.const 1
+ f64.const 2.0
+ )
+ (func (export "f") (result f32 i32 f64)
+ f32.const 3.14
+ return_call 0
+ )
+)`, /type mismatch/);