diff options
Diffstat (limited to 'test/passes/inlining-optimizing_enable-threads.txt')
-rw-r--r-- | test/passes/inlining-optimizing_enable-threads.txt | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/test/passes/inlining-optimizing_enable-threads.txt b/test/passes/inlining-optimizing_enable-threads.txt index ecf732ea4..1a1462ba6 100644 --- a/test/passes/inlining-optimizing_enable-threads.txt +++ b/test/passes/inlining-optimizing_enable-threads.txt @@ -5,44 +5,44 @@ (export "user" (func $user)) (export "exported" (func $exported)) (export "exported_small" (func $exported_small)) - (func $user (; 0 ;) + (func $user (call $exported) (call $tabled) (call $multi) (call $multi) ) - (func $exported (; 1 ;) + (func $exported (nop) (nop) ) - (func $exported_small (; 2 ;) + (func $exported_small (nop) ) - (func $recursive (; 3 ;) + (func $recursive (call $recursive) ) - (func $tabled (; 4 ;) + (func $tabled (nop) (nop) ) - (func $cycle1 (; 5 ;) + (func $cycle1 (call $cycle1) ) - (func $multi (; 6 ;) + (func $multi (nop) (nop) ) ) (module (type $none_=>_i32 (func (result i32))) - (func $main (; 0 ;) (result i32) + (func $main (result i32) (unreachable) ) ) (module (type $none_=>_i64 (func (result i64))) (memory $0 (shared 1 1)) - (func $1 (; 0 ;) (result i64) + (func $1 (result i64) (i32.atomic.store16 (i32.const 0) (i32.const 0) @@ -52,21 +52,21 @@ ) (module (type $none_=>_none (func)) - (func $main (; 0 ;) + (func $main (call $one) (call $one) ) - (func $one (; 1 ;) + (func $one (call $one) ) ) (module (type $none_=>_none (func)) - (func $main (; 0 ;) + (func $main (call $two) (call $two) ) - (func $two (; 1 ;) + (func $two (call $two) ) ) @@ -75,7 +75,7 @@ (memory $0 17) (table $0 89 89 funcref) (start $1) - (func $1 (; 0 ;) + (func $1 (i32.store (i32.const 4) (i32.const 0) |