summaryrefslogtreecommitdiff
path: root/test/ctor-eval/basics.wast.out
diff options
context:
space:
mode:
Diffstat (limited to 'test/ctor-eval/basics.wast.out')
-rw-r--r--test/ctor-eval/basics.wast.out38
1 files changed, 38 insertions, 0 deletions
diff --git a/test/ctor-eval/basics.wast.out b/test/ctor-eval/basics.wast.out
new file mode 100644
index 000000000..bf7735185
--- /dev/null
+++ b/test/ctor-eval/basics.wast.out
@@ -0,0 +1,38 @@
+(module
+ (type $v (func))
+ (table 1 1 anyfunc)
+ (elem (i32.const 0) $call-indirect)
+ (memory $0 256 256)
+ (data (i32.const 0) "\00\00\00\00\00\00\00\00\00\00nas\00\00\00aka yzkx waka wakm\00\00\00\00\00\00C")
+ (export "test1" (func $test1))
+ (export "test2" (func $test2))
+ (export "test3" (func $test3))
+ (func $test1 (type $v)
+ (nop)
+ )
+ (func $test2 (type $v)
+ (nop)
+ )
+ (func $test3 (type $v)
+ (nop)
+ )
+ (func $safe-to-call (type $v)
+ (drop
+ (i32.const 1)
+ )
+ (i32.store8
+ (i32.const 10)
+ (i32.const 110)
+ )
+ (i32.store8
+ (i32.const 33)
+ (i32.const 109)
+ )
+ )
+ (func $call-indirect (type $v)
+ (i32.store8
+ (i32.const 40)
+ (i32.const 67)
+ )
+ )
+)