summaryrefslogtreecommitdiff
path: root/src/ir/effects.h
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2021-01-22 18:07:46 +0900
committerGitHub <noreply@github.com>2021-01-22 18:07:46 +0900
commit6d62e3c4be466888239a89c2e98713f60074aaea (patch)
treef2b55ef6eed4be74c2faee998f15ab46231083a9 /src/ir/effects.h
parent69ff866fc7e54f25d8d8598581aa3553cb87603b (diff)
downloadbinaryen-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.h5
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) {