summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/multi-value/call-validate.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/wasm/multi-value/call-validate.js')
-rw-r--r--js/src/jit-test/tests/wasm/multi-value/call-validate.js47
1 files changed, 47 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/wasm/multi-value/call-validate.js b/js/src/jit-test/tests/wasm/multi-value/call-validate.js
new file mode 100644
index 0000000000..513e11bc6e
--- /dev/null
+++ b/js/src/jit-test/tests/wasm/multi-value/call-validate.js
@@ -0,0 +1,47 @@
+wasmValidateText(`
+ (module
+ (func (result i32 i32)
+ (i32.const 32)
+ (i32.const 10)))`);
+
+wasmValidateText(`
+ (module
+ (type $t (func (result i32 i32)))
+ (func (type $t)
+ (i32.const 32)
+ (i32.const 10)))`);
+
+wasmValidateText(`
+ (module
+ (func (result i32 i32)
+ (block (result i32 i32)
+ (i32.const 32)
+ (i32.const 10))))`);
+
+wasmValidateText(`
+ (module
+ (func $return-2 (result i32 i32)
+ (i32.const 32)
+ (i32.const 10))
+ (func $tail-call (result i32 i32)
+ (call 0)))`);
+
+wasmValidateText(`
+ (module
+ (func $return-2 (result i32 i32)
+ (i32.const 32)
+ (i32.const 10))
+ (func $add (result i32)
+ (call 0)
+ i32.add))`);
+
+wasmValidateText(`
+ (module
+ (func $return-2 (param i32 i32) (result i32 i32)
+ (local.get 0)
+ (local.get 1))
+ (func (export "run") (result i32)
+ (i32.const 32)
+ (i32.const 10)
+ (call 0)
+ i32.add))`);