summaryrefslogtreecommitdiff
path: root/test/passes/duplicate-function-elimination_all-features.wast
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2020-10-08 16:00:20 -0700
committerGitHub <noreply@github.com>2020-10-08 16:00:20 -0700
commitc8661e115309626a87708cb25067b6a3210367fe (patch)
treeb46ab556fdb31bb11006ffe31e77f80ccb040468 /test/passes/duplicate-function-elimination_all-features.wast
parentd68896d8c54f538c04d4fe43825a63ba135ed0fe (diff)
downloadbinaryen-c8661e115309626a87708cb25067b6a3210367fe.tar.gz
binaryen-c8661e115309626a87708cb25067b6a3210367fe.tar.bz2
binaryen-c8661e115309626a87708cb25067b6a3210367fe.zip
Fuzz fix for DuplicateFunctionElimination (#3204)
The replaceFunctions utility replaced exports by name, but did not check the kind, so it could get confused when names happen to overlap.
Diffstat (limited to 'test/passes/duplicate-function-elimination_all-features.wast')
-rw-r--r--test/passes/duplicate-function-elimination_all-features.wast13
1 files changed, 12 insertions, 1 deletions
diff --git a/test/passes/duplicate-function-elimination_all-features.wast b/test/passes/duplicate-function-elimination_all-features.wast
index 587271728..116542c96 100644
--- a/test/passes/duplicate-function-elimination_all-features.wast
+++ b/test/passes/duplicate-function-elimination_all-features.wast
@@ -1,4 +1,4 @@
-;; --dupliate-function-elimination should not remove functions used in ref.func.
+;; --duplicate-function-elimination should not remove functions used in ref.func.
(module
(func $0 (result i32)
(i32.const 0)
@@ -10,3 +10,14 @@
(ref.func $1)
)
)
+;; renaming after deduplication must only affect functions
+(module
+ (memory $foo 16 16)
+ (global $bar i32 (i32.const 0))
+ (export "memory" (memory $foo))
+ (export "global" (global $bar))
+ (func $bar ;; happens to share a name with the global
+ )
+ (func $foo ;; happens to share a name with the memory
+ )
+)