diff options
author | Heejin Ahn <aheejin@gmail.com> | 2021-06-29 15:18:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-29 15:18:09 -0700 |
commit | 29323f09c63c48aef029ff308c39e1c1dc11d6c4 (patch) | |
tree | 9f42f24bbb1725298401ab9d2a44c3960bf1cb98 /src/shared-validator.cc | |
parent | cdc1b459c0ba7a5ae8c2b091fe3065185ce81494 (diff) | |
download | wabt-29323f09c63c48aef029ff308c39e1c1dc11d6c4.tar.gz wabt-29323f09c63c48aef029ff308c39e1c1dc11d6c4.tar.bz2 wabt-29323f09c63c48aef029ff308c39e1c1dc11d6c4.zip |
[EH] Remove `unwind` (#1682)
`unwind` was removed. See WebAssembly/exception-handling#156.
Diffstat (limited to 'src/shared-validator.cc')
-rw-r--r-- | src/shared-validator.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/shared-validator.cc b/src/shared-validator.cc index 0071d2f2..214c4204 100644 --- a/src/shared-validator.cc +++ b/src/shared-validator.cc @@ -1241,11 +1241,4 @@ Result SharedValidator::OnUnreachable(const Location& loc) { return result; } -Result SharedValidator::OnUnwind(const Location& loc) { - Result result = Result::Ok; - expr_loc_ = &loc; - result |= typechecker_.OnUnwind(); - return result; -} - } // namespace wabt |