summaryrefslogtreecommitdiff
path: root/test/lit/passes/opt_flatten.wast
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2021-06-28 22:02:17 +0000
committerGitHub <noreply@github.com>2021-06-28 15:02:17 -0700
commit6a2d7f989065820476268a2382db2eccf72aadd7 (patch)
treec83ca0e6057629a43158acd32d942c329485717e /test/lit/passes/opt_flatten.wast
parent395b071ae9b09f0b4fe3ce0f3a43f16ba74f01a5 (diff)
downloadbinaryen-6a2d7f989065820476268a2382db2eccf72aadd7.tar.gz
binaryen-6a2d7f989065820476268a2382db2eccf72aadd7.tar.bz2
binaryen-6a2d7f989065820476268a2382db2eccf72aadd7.zip
Generate FileCheck checks for all module items (#3957)
Instead of only generating checks for functions, generate checks for all named top-level module items, such as types, tags, tables, and memories. Because module items can be in different orders in the input and the output but FileCheck checks must follow the order of the output, we need to be slightly clever about when we emit the checks. Consider these types in the input file: ``` (type $A (...)) (type $B (...)) ``` If their order is reversed in the output file, then the checks for $B need to be emitted before the checks for $A, so the resulting module will look like this: ``` ;; CHECK: (type $B (...)) ;; CHECK: (type $A (...)) (type $A (...)) (type $B (...)) ``` Rather than this, which looks nicer but would be incorrect: ``` ;; CHECK: (type $A (...)) (type $A (...)) ;; CHECK: (type $B (...)) (type $B (...)) ```
Diffstat (limited to 'test/lit/passes/opt_flatten.wast')
-rw-r--r--test/lit/passes/opt_flatten.wast1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/lit/passes/opt_flatten.wast b/test/lit/passes/opt_flatten.wast
index e3cf103f3..048ccd60d 100644
--- a/test/lit/passes/opt_flatten.wast
+++ b/test/lit/passes/opt_flatten.wast
@@ -5,6 +5,7 @@
;; RUN: wasm-opt %s -all -O1 --flatten --rereloop -S -o - | filecheck %s
(module
+ ;; CHECK: (export "foo" (func $foo))
(export "foo" (func $foo))
;; CHECK: (func $foo (result funcref)
;; CHECK-NEXT: (local $0 funcref)