diff options
author | Heejin Ahn <aheejin@gmail.com> | 2021-01-22 18:07:46 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-22 18:07:46 +0900 |
commit | 6d62e3c4be466888239a89c2e98713f60074aaea (patch) | |
tree | f2b55ef6eed4be74c2faee998f15ab46231083a9 /src/dataflow | |
parent | 69ff866fc7e54f25d8d8598581aa3553cb87603b (diff) | |
download | binaryen-6d62e3c4be466888239a89c2e98713f60074aaea.tar.gz binaryen-6d62e3c4be466888239a89c2e98713f60074aaea.tar.bz2 binaryen-6d62e3c4be466888239a89c2e98713f60074aaea.zip |
Remove exnref and br_on_exn (#3505)
This removes `exnref` type and `br_on_exn` instruction.
Diffstat (limited to 'src/dataflow')
-rw-r--r-- | src/dataflow/graph.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/dataflow/graph.h b/src/dataflow/graph.h index 4cf5022e3..6256c4c1e 100644 --- a/src/dataflow/graph.h +++ b/src/dataflow/graph.h @@ -228,8 +228,7 @@ struct Graph : public UnifiedExpressionVisitor<Graph, Node*> { return doVisitUnreachable(unreachable); } else if (auto* drop = curr->dynCast<Drop>()) { return doVisitDrop(drop); - } else if (curr->is<Try>() || curr->is<Throw>() || curr->is<Rethrow>() || - curr->is<BrOnExn>()) { + } else if (curr->is<Try>() || curr->is<Throw>() || curr->is<Rethrow>()) { Fatal() << "DataFlow does not support EH instructions yet"; } else { return doVisitGeneric(curr); |