summaryrefslogtreecommitdiff
path: root/src/analysis/lattices/flat.h
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2023-10-25 22:51:30 +0200
committerGitHub <noreply@github.com>2023-10-25 22:51:30 +0200
commit1dcc8599c113550530103b35f26e22740fa86b4c (patch)
tree74aa95c31128f2d33a66da77994112fcb5be9108 /src/analysis/lattices/flat.h
parent7a6d9621f5a654a541e4ad9a6313b47495ea9a62 (diff)
downloadbinaryen-1dcc8599c113550530103b35f26e22740fa86b4c.tar.gz
binaryen-1dcc8599c113550530103b35f26e22740fa86b4c.tar.bz2
binaryen-1dcc8599c113550530103b35f26e22740fa86b4c.zip
[analysis] Implement a Lift lattice (#6040)
This lattice "lifts" another lattice by inserting a new bottom element underneath it.
Diffstat (limited to 'src/analysis/lattices/flat.h')
-rw-r--r--src/analysis/lattices/flat.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/analysis/lattices/flat.h b/src/analysis/lattices/flat.h
index c34f8fc7c..b3cfe3809 100644
--- a/src/analysis/lattices/flat.h
+++ b/src/analysis/lattices/flat.h
@@ -68,6 +68,7 @@ public:
return EQUAL;
}
}
+
bool join(Element& self, const Element& other) const noexcept {
switch (compare(self, other)) {
case LESS: