diff options
author | Thomas Lively <tlively@google.com> | 2024-12-13 14:14:30 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-13 22:14:30 +0000 |
commit | 0272a2745a27ceb5839e933cbb371e33b3d7244d (patch) | |
tree | 2135c7b5f9b94ee40fa1b391d916abd8494895af | |
parent | 484adec87c8b988cbb24d0a2fc4718ac69625173 (diff) | |
download | binaryen-0272a2745a27ceb5839e933cbb371e33b3d7244d.tar.gz binaryen-0272a2745a27ceb5839e933cbb371e33b3d7244d.tar.bz2 binaryen-0272a2745a27ceb5839e933cbb371e33b3d7244d.zip |
Address comments from #7149 (#7152)
The PR was accidentally merged without these fixes included.
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | src/wasm-binary.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 52e453ee4..b6ceeb8da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,8 @@ Current Trunk - BinaryenSelect no longer takes a type parameter. - AutoDrop APIs have been removed. - - Binaryen now supports parsing control flow structures with parameter types. + - Binaryen now supports parsing control flow structures with parameter types by + lowering them away in the parsers.. v120 ---- diff --git a/src/wasm-binary.h b/src/wasm-binary.h index 61f4faf69..bece0af8e 100644 --- a/src/wasm-binary.h +++ b/src/wasm-binary.h @@ -1467,7 +1467,7 @@ public: bool getBasicType(int32_t code, Type& out); bool getBasicHeapType(int64_t code, HeapType& out); - // Get the signature of control flow structure. + // Get the signature of a control flow structure. Signature getBlockType(); // Read a value and get a type for it. Type getType(); |