summaryrefslogtreecommitdiff
path: root/src/analysis/cfg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/cfg.cpp')
-rw-r--r--src/analysis/cfg.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/analysis/cfg.cpp b/src/analysis/cfg.cpp
index 7d770776d..0d651526b 100644
--- a/src/analysis/cfg.cpp
+++ b/src/analysis/cfg.cpp
@@ -103,4 +103,12 @@ void BasicBlock::print(std::ostream& os, Module* wasm, size_t start) const {
}
}
+CFGBlockIndexes::CFGBlockIndexes(const CFG& cfg) {
+ for (auto& block : cfg) {
+ for (auto* expr : block) {
+ map[expr] = block.getIndex();
+ }
+ }
+}
+
} // namespace wasm::analysis