summaryrefslogtreecommitdiff
path: root/test/ctor-eval/overlapping-segments.wast.out
diff options
context:
space:
mode:
Diffstat (limited to 'test/ctor-eval/overlapping-segments.wast.out')
-rw-r--r--test/ctor-eval/overlapping-segments.wast.out21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/ctor-eval/overlapping-segments.wast.out b/test/ctor-eval/overlapping-segments.wast.out
new file mode 100644
index 000000000..5a5447391
--- /dev/null
+++ b/test/ctor-eval/overlapping-segments.wast.out
@@ -0,0 +1,21 @@
+(module
+ (type $none_=>_i32 (func (result i32)))
+ (type $none_=>_none (func))
+ (table $0 46 funcref)
+ (elem $0 (i32.const 9) $1)
+ (elem $1 (i32.const 9) $0)
+ (export "test1" (func $2))
+ (func $0 (result i32)
+ (unreachable)
+ )
+ (func $1 (result i32)
+ (i32.const 65)
+ )
+ (func $2
+ (drop
+ (call_indirect $0 (type $none_=>_i32)
+ (i32.const 9)
+ )
+ )
+ )
+)