diff options
Diffstat (limited to 'test/lit/passes/monomorphize-context.wast')
-rw-r--r-- | test/lit/passes/monomorphize-context.wast | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lit/passes/monomorphize-context.wast b/test/lit/passes/monomorphize-context.wast index e4391d3a5..cc4bdfc9d 100644 --- a/test/lit/passes/monomorphize-context.wast +++ b/test/lit/passes/monomorphize-context.wast @@ -954,8 +954,6 @@ ;; CAREFUL-NEXT: ) (module ;; ALWAYS: (type $struct (struct (field i16) (field (mut i8)) (field (mut f64)))) - ;; CAREFUL: (type $0 (func)) - ;; CAREFUL: (type $struct (struct (field i16) (field (mut i8)) (field (mut f64)))) (type $struct (struct (field i16) (field (mut i8)) (field (mut f64)))) @@ -973,11 +971,13 @@ ;; ALWAYS-NEXT: (local.get $f64) ;; ALWAYS-NEXT: ) ;; ALWAYS-NEXT: ) + ;; CAREFUL: (type $1 (func)) + ;; CAREFUL: (type $2 (func (param (ref $struct)))) ;; CAREFUL: (type $3 (func (param i32 f64))) - ;; CAREFUL: (func $caller (type $0) + ;; CAREFUL: (func $caller (type $1) ;; CAREFUL-NEXT: (local $i32 i32) ;; CAREFUL-NEXT: (local $f64 f64) ;; CAREFUL-NEXT: (call $target_2 |