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/ir/effects.h | |
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/ir/effects.h')
-rw-r--r-- | src/ir/effects.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/ir/effects.h b/src/ir/effects.h index 22fab593d..e9e8d0f6c 100644 --- a/src/ir/effects.h +++ b/src/ir/effects.h @@ -538,11 +538,6 @@ private: // traps when the arg is null parent.implicitTrap = true; } - void visitBrOnExn(BrOnExn* curr) { - parent.breakTargets.insert(curr->name); - // traps when the arg is null - parent.implicitTrap = true; - } void visitNop(Nop* curr) {} void visitUnreachable(Unreachable* curr) { parent.trap = true; } void visitPop(Pop* curr) { |