diff options
Diffstat (limited to 'test/lit/merge')
-rw-r--r-- | test/lit/merge/renamings.wat | 4 | ||||
-rw-r--r-- | test/lit/merge/renamings.wat.second | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/lit/merge/renamings.wat b/test/lit/merge/renamings.wat index bb49b7ab7..6d4de5c65 100644 --- a/test/lit/merge/renamings.wat +++ b/test/lit/merge/renamings.wat @@ -72,12 +72,12 @@ ;; CHECK: (table $other 70 80 funcref) ;; CHECK: (elem $foo func $foo $bar) - (elem $foo (ref null func) $foo $bar) + (elem $foo func $foo $bar) ;; This elem has a conflict in second.wat, and so second.wat's $bar ;; will be renamed. ;; CHECK: (elem $bar func $bar $foo) - (elem $bar (ref null func) $bar $foo) + (elem $bar func $bar $foo) ;; CHECK: (elem $other func $foo_3 $other) diff --git a/test/lit/merge/renamings.wat.second b/test/lit/merge/renamings.wat.second index 5c3c5d299..f3489e620 100644 --- a/test/lit/merge/renamings.wat.second +++ b/test/lit/merge/renamings.wat.second @@ -20,9 +20,9 @@ (table $other 70 80 funcref) - (elem $other (ref null func) $foo $other) + (elem $other func $foo $other) - (elem $bar (ref null func) $other $foo) + (elem $bar func $other $foo) (global $other i32 (i32.const 3)) |