diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2020-03-16 13:51:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-16 13:51:31 -0700 |
commit | aadec4526b339af4d2d2b92d3d64f07f935df7a5 (patch) | |
tree | b1bb4d3154d6b0d922d8b5d82a83da2c23231bb9 /src/passes/Flatten.cpp | |
parent | 2b8e9248604b2419a69c268ab131366a7408ebaf (diff) | |
download | binaryen-aadec4526b339af4d2d2b92d3d64f07f935df7a5.tar.gz binaryen-aadec4526b339af4d2d2b92d3d64f07f935df7a5.tar.bz2 binaryen-aadec4526b339af4d2d2b92d3d64f07f935df7a5.zip |
Collect signatures from all block kinds (#2691)
Previously the signature collection mechanism responsible for
populating the type section with signatures used by instructions only
collected signatures from indirect call and block instructions. This
works as long as all other control flow constructs like ifs, loops,
and tries contain blocks with the same signature. But it is possible
to have an if with non-block children, and we would need to collect
its signature as well.
Diffstat (limited to 'src/passes/Flatten.cpp')
-rw-r--r-- | src/passes/Flatten.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/passes/Flatten.cpp b/src/passes/Flatten.cpp index 13aa985aa..0a6a7022a 100644 --- a/src/passes/Flatten.cpp +++ b/src/passes/Flatten.cpp @@ -68,7 +68,7 @@ struct Flatten return; } - if (Flat::isControlFlowStructure(curr)) { + if (Properties::isControlFlowStructure(curr)) { // handle control flow explicitly. our children do not have control flow, // but they do have preludes which we need to set up in the right place @@ -291,7 +291,7 @@ struct Flatten // next, finish up: migrate our preludes if we can if (!ourPreludes.empty()) { auto* parent = getParent(); - if (parent && !Flat::isControlFlowStructure(parent)) { + if (parent && !Properties::isControlFlowStructure(parent)) { auto& parentPreludes = preludes[parent]; for (auto* prelude : ourPreludes) { parentPreludes.push_back(prelude); |