diff options
author | Heejin Ahn <aheejin@gmail.com> | 2019-07-14 15:25:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-14 15:25:16 -0700 |
commit | cdab4ef130626958790cb2601209f14d192fa10a (patch) | |
tree | 420e95f5effa60a9fd0742ffd4f45735e2975ed8 /src/binaryen-c.h | |
parent | 8d13b5a9c59b5b215583568ddd117a626cc8f59f (diff) | |
download | binaryen-cdab4ef130626958790cb2601209f14d192fa10a.tar.gz binaryen-cdab4ef130626958790cb2601209f14d192fa10a.tar.bz2 binaryen-cdab4ef130626958790cb2601209f14d192fa10a.zip |
Rename except_ref type to exnref (#2224)
In WebAssembly/exception-handling#79 we agreed to rename `except_ref`
type to `exnref`.
Diffstat (limited to 'src/binaryen-c.h')
-rw-r--r-- | src/binaryen-c.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/binaryen-c.h b/src/binaryen-c.h index f419292bf..b186032f5 100644 --- a/src/binaryen-c.h +++ b/src/binaryen-c.h @@ -74,7 +74,7 @@ BinaryenType BinaryenTypeInt64(void); BinaryenType BinaryenTypeFloat32(void); BinaryenType BinaryenTypeFloat64(void); BinaryenType BinaryenTypeVec128(void); -BinaryenType BinaryenTypeExceptRef(void); +BinaryenType BinaryenTypeExnref(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. |