diff options
Diffstat (limited to 'test/passes/reorder-functions.txt')
-rw-r--r-- | test/passes/reorder-functions.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/passes/reorder-functions.txt b/test/passes/reorder-functions.txt index b9c0f1154..d7b59a591 100644 --- a/test/passes/reorder-functions.txt +++ b/test/passes/reorder-functions.txt @@ -1,15 +1,16 @@ (module (memory 256 256) - (func $c + (type $0 (func)) + (func $c (type $0) (call $c) (call $c) (call $c) ) - (func $b + (func $b (type $0) (call $b) (call $b) ) - (func $a + (func $a (type $0) (call $a) ) ) |