diff options
Diffstat (limited to 'test/passes/inlining-optimizing_enable-threads.txt')
-rw-r--r-- | test/passes/inlining-optimizing_enable-threads.txt | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/test/passes/inlining-optimizing_enable-threads.txt b/test/passes/inlining-optimizing_enable-threads.txt index 437870065..4aca378e6 100644 --- a/test/passes/inlining-optimizing_enable-threads.txt +++ b/test/passes/inlining-optimizing_enable-threads.txt @@ -1,53 +1,53 @@ (module - (type $0 (func)) - (type $1 (func (result i32))) - (type $2 (func (result f64))) - (type $3 (func (param f32 i64))) + (type $FUNCSIG$v (func)) + (type $FUNCSIG$i (func (result i32))) + (type $FUNCSIG$d (func (result f64))) + (type $FUNCSIG$vfj (func (param f32 i64))) (table $0 1 1 funcref) (elem (i32.const 0) $tabled) (export "user" (func $user)) (export "exported" (func $exported)) (export "exported_small" (func $exported_small)) - (func $user (; 0 ;) (type $0) + (func $user (; 0 ;) (type $FUNCSIG$v) (call $exported) (call $tabled) (call $multi) (call $multi) ) - (func $exported (; 1 ;) (type $0) + (func $exported (; 1 ;) (type $FUNCSIG$v) (nop) (nop) ) - (func $exported_small (; 2 ;) (type $0) + (func $exported_small (; 2 ;) (type $FUNCSIG$v) (nop) ) - (func $recursive (; 3 ;) (type $0) + (func $recursive (; 3 ;) (type $FUNCSIG$v) (call $recursive) ) - (func $tabled (; 4 ;) (type $0) + (func $tabled (; 4 ;) (type $FUNCSIG$v) (nop) (nop) ) - (func $cycle1 (; 5 ;) (type $0) + (func $cycle1 (; 5 ;) (type $FUNCSIG$v) (call $cycle1) ) - (func $multi (; 6 ;) (type $0) + (func $multi (; 6 ;) (type $FUNCSIG$v) (nop) (nop) ) ) (module - (type $0 (func (result i32))) - (type $1 (func)) - (func $main (; 0 ;) (type $0) (result i32) + (type $FUNCSIG$i (func (result i32))) + (type $FUNCSIG$v (func)) + (func $main (; 0 ;) (type $FUNCSIG$i) (result i32) (unreachable) ) ) (module - (type $0 (func (result i32))) - (type $1 (func (result i64))) + (type $FUNCSIG$i (func (result i32))) + (type $FUNCSIG$j (func (result i64))) (memory $0 (shared 1 1)) - (func $1 (; 0 ;) (type $1) (result i64) + (func $1 (; 0 ;) (type $FUNCSIG$j) (result i64) (i32.atomic.store16 (i32.const 0) (i32.const 0) @@ -56,22 +56,22 @@ ) ) (module - (type $0 (func)) - (func $main (; 0 ;) (type $0) + (type $FUNCSIG$v (func)) + (func $main (; 0 ;) (type $FUNCSIG$v) (call $one) (call $one) ) - (func $one (; 1 ;) (type $0) + (func $one (; 1 ;) (type $FUNCSIG$v) (call $one) ) ) (module - (type $0 (func)) - (func $main (; 0 ;) (type $0) + (type $FUNCSIG$v (func)) + (func $main (; 0 ;) (type $FUNCSIG$v) (call $two) (call $two) ) - (func $two (; 1 ;) (type $0) + (func $two (; 1 ;) (type $FUNCSIG$v) (call $two) ) ) |