diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2021-06-28 22:02:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-28 15:02:17 -0700 |
commit | 6a2d7f989065820476268a2382db2eccf72aadd7 (patch) | |
tree | c83ca0e6057629a43158acd32d942c329485717e /test/lit/passes/dce-eh.wast | |
parent | 395b071ae9b09f0b4fe3ce0f3a43f16ba74f01a5 (diff) | |
download | binaryen-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/dce-eh.wast')
-rw-r--r-- | test/lit/passes/dce-eh.wast | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/lit/passes/dce-eh.wast b/test/lit/passes/dce-eh.wast index af216765c..e2268f87b 100644 --- a/test/lit/passes/dce-eh.wast +++ b/test/lit/passes/dce-eh.wast @@ -4,9 +4,14 @@ ;; If either try body or catch body is reachable, the whole try construct is ;; reachable (module + ;; CHECK: (tag $e (param)) + ;; CHECK: (func $foo + ;; CHECK-NEXT: (nop) + ;; CHECK-NEXT: ) (func $foo) (tag $e) + ;; CHECK: (func $try_unreachable ;; CHECK-NEXT: (try $try ;; CHECK-NEXT: (do |