summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authordcode <dcode@dcode.io>2022-10-19 19:57:07 +0200
committerGitHub <noreply@github.com>2022-10-19 10:57:07 -0700
commit3b1df7e5c329d9600cfadd513b557af618c007aa (patch)
tree4186b20d32b46294d2862fe945fc5c574359e6ac /CHANGELOG.md
parentded21cf0c1c09dd4e025406c759e3d4bb08d31cc (diff)
downloadbinaryen-3b1df7e5c329d9600cfadd513b557af618c007aa.tar.gz
binaryen-3b1df7e5c329d9600cfadd513b557af618c007aa.tar.bz2
binaryen-3b1df7e5c329d9600cfadd513b557af618c007aa.zip
[C API] Align I31ref and Dataref to be nullable (#5153)
The C API still returned non nullable types for `dataref` (`ref data` instead of `ref null data`) and `i31ref` (`ref i31` instead of `ref null i31`). This PR aligns with the current state of the GC proposal, making them nullable when obtained via the C API.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d79c1c0f8..876a96032 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -25,6 +25,7 @@ Current Trunk
- Implemented bottom heap types: `none`, `nofunc`, and `noextern`. RefNull
expressions and null `Literal`s must now have type `nullref`, `nullfuncref`,
or `nullexternref`.
+* The C-API's `BinaryenTypeI31ref` and `BinaryenTypeDataref` now return nullable types.
v110
----