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/binary-reader.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/binary-reader.cc')
-rw-r--r-- | src/binary-reader.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/binary-reader.cc b/src/binary-reader.cc index 6892bbcc..42fb5029 100644 --- a/src/binary-reader.cc +++ b/src/binary-reader.cc @@ -1435,12 +1435,6 @@ Result BinaryReader::ReadFunctionBody(Offset end_offset) { break; } - case Opcode::Unwind: { - CALLBACK0(OnUnwindExpr); - CALLBACK0(OnOpcodeBare); - break; - } - case Opcode::Delegate: { Index index; CHECK_RESULT(ReadIndex(&index, "depth")); |