summaryrefslogtreecommitdiff
path: root/test/passes/extract-function_pass-arg=extract@foo.wast
diff options
context:
space:
mode:
authorDerek Schuff <dschuff@chromium.org>2019-05-21 16:08:30 -0700
committerGitHub <noreply@github.com>2019-05-21 16:08:30 -0700
commit9b5e470bcef1c6934ae74457d8094143bad8d74a (patch)
tree2ba2b55a6280cf13020be7e4b119fb05743cce61 /test/passes/extract-function_pass-arg=extract@foo.wast
parent1a3c1a58cc7e97a846f612baf7f74a370980458f (diff)
downloadbinaryen-9b5e470bcef1c6934ae74457d8094143bad8d74a.tar.gz
binaryen-9b5e470bcef1c6934ae74457d8094143bad8d74a.tar.bz2
binaryen-9b5e470bcef1c6934ae74457d8094143bad8d74a.zip
Don't use colons in filenames (#2134)
Windows filenames can't contain colons. Use @ instead for passing arguments to passes.
Diffstat (limited to 'test/passes/extract-function_pass-arg=extract@foo.wast')
-rw-r--r--test/passes/extract-function_pass-arg=extract@foo.wast12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/passes/extract-function_pass-arg=extract@foo.wast b/test/passes/extract-function_pass-arg=extract@foo.wast
new file mode 100644
index 000000000..876910300
--- /dev/null
+++ b/test/passes/extract-function_pass-arg=extract@foo.wast
@@ -0,0 +1,12 @@
+(module
+ (func $foo
+ (call $bar)
+ )
+ (func $bar
+ (call $foo)
+ )
+ (func $other
+ (drop (i32.const 1))
+ )
+)
+