This commit is contained in:
2026-07-11 16:25:58 -06:00
parent 475f0a7f68
commit d71d78c68f
24 changed files with 458 additions and 120 deletions
+5
View File
@@ -0,0 +1,5 @@
ret > ExitSuccess
out > 555
out >
err > warning: using `--invoke` with a function that returns values is experimental and may break in the future
err >
+11
View File
@@ -0,0 +1,11 @@
(module
(func
(param)
(result i32)
(local i32 i32 i32 i32 i32)
(i32.const 0)
(if
(result i32)
(then (i32.const 777))
(else (i32.const 555))))
(export "main" (func 0)))
+1
View File
@@ -0,0 +1 @@
(if #false 777 555)