summaryrefslogtreecommitdiff
path: root/test/desugar
diff options
context:
space:
mode:
authorKeith Winstein <keithw@cs.stanford.edu>2023-07-31 17:00:24 -0700
committerGitHub <noreply@github.com>2023-07-31 17:00:24 -0700
commit3d1d29f6581d634221d2e0d5603a4de3d8f77d69 (patch)
tree84d9e1a710337829054b266db95a6f316e0a59d3 /test/desugar
parent00083b54e4e11988973e8a4360836de5a67fcbbc (diff)
downloadwabt-3d1d29f6581d634221d2e0d5603a4de3d8f77d69.tar.gz
wabt-3d1d29f6581d634221d2e0d5603a4de3d8f77d69.tar.bz2
wabt-3d1d29f6581d634221d2e0d5603a4de3d8f77d69.zip
wat-writer.cc: resolve missing type index in call_indirect (#2278)
Diffstat (limited to 'test/desugar')
-rw-r--r--test/desugar/call_indirect.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/desugar/call_indirect.txt b/test/desugar/call_indirect.txt
new file mode 100644
index 00000000..fc9d5688
--- /dev/null
+++ b/test/desugar/call_indirect.txt
@@ -0,0 +1,24 @@
+;;; TOOL: wat-desugar
+(table 0 funcref)
+(func
+ i32.const 0
+ i32.const 0
+ i32.const 0
+ i32.const 0
+ call_indirect (type 0)
+ call_indirect
+ call_indirect (param i32))
+(;; STDOUT ;;;
+(module
+ (table (;0;) 0 funcref)
+ (func (;0;)
+ i32.const 0
+ i32.const 0
+ i32.const 0
+ i32.const 0
+ call_indirect (type 0)
+ call_indirect (type 0)
+ call_indirect (type 1))
+ (type (;0;) (func))
+ (type (;1;) (func (param i32))))
+;;; STDOUT ;;)