diff options
author | Heejin Ahn <aheejin@gmail.com> | 2019-05-07 18:52:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-07 18:52:57 -0700 |
commit | 14a286971d203e3caf6f49089fe6ddc16024861f (patch) | |
tree | e20a5659bfd95dacc3f2d779f759173da065d607 /src/binaryen-c.h | |
parent | da716eb233f9fe7cefc61d9d1ce54f8b8c9d9126 (diff) | |
download | binaryen-14a286971d203e3caf6f49089fe6ddc16024861f.tar.gz binaryen-14a286971d203e3caf6f49089fe6ddc16024861f.tar.bz2 binaryen-14a286971d203e3caf6f49089fe6ddc16024861f.zip |
Add except_ref type (#2081)
This adds except_ref type, which is a part of the exception handling
proposal.
Diffstat (limited to 'src/binaryen-c.h')
-rw-r--r-- | src/binaryen-c.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/binaryen-c.h b/src/binaryen-c.h index 9a57cac79..62ffa4348 100644 --- a/src/binaryen-c.h +++ b/src/binaryen-c.h @@ -74,6 +74,7 @@ BinaryenType BinaryenTypeInt64(void); BinaryenType BinaryenTypeFloat32(void); BinaryenType BinaryenTypeFloat64(void); BinaryenType BinaryenTypeVec128(void); +BinaryenType BinaryenTypeExceptRef(void); BinaryenType BinaryenTypeUnreachable(void); // Not a real type. Used as the last parameter to BinaryenBlock to let // the API figure out the type instead of providing one. |