diff options
Diffstat (limited to 'test/passes/extract-function_pass-arg=extract-function@foo.txt')
-rw-r--r-- | test/passes/extract-function_pass-arg=extract-function@foo.txt | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/test/passes/extract-function_pass-arg=extract-function@foo.txt b/test/passes/extract-function_pass-arg=extract-function@foo.txt deleted file mode 100644 index 3caf274c3..000000000 --- a/test/passes/extract-function_pass-arg=extract-function@foo.txt +++ /dev/null @@ -1,28 +0,0 @@ -(module - (type $none_=>_none (func)) - (import "env" "bar" (func $bar)) - (export "foo" (func $foo)) - (func $foo - (call $bar) - ) -) -(module - (type $none_=>_none (func)) - (import "env" "other" (func $other)) - (export "foo" (func $foo)) - (func $foo - (nop) - ) -) -(module - (type $none (func)) - (import "env" "other" (func $other)) - (table $t 10 funcref) - (elem $0 (i32.const 0) $other) - (export "foo" (func $foo)) - (func $foo - (call_indirect (type $none) - (i32.const 10) - ) - ) -) |