diff options
author | Thomas Lively <tlively@google.com> | 2024-02-05 12:08:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-05 12:08:02 -0800 |
commit | be13e0f115c6627b286343368fb125e18d332486 (patch) | |
tree | 182ae3e4354e28100f12690ff22965edecd04f07 /src/parser/input.h | |
parent | ed15efeedd33bbdbadfafabc812d70a792a9a06c (diff) | |
download | binaryen-be13e0f115c6627b286343368fb125e18d332486.tar.gz binaryen-be13e0f115c6627b286343368fb125e18d332486.tar.bz2 binaryen-be13e0f115c6627b286343368fb125e18d332486.zip |
[Parser] Parse v128.const (#6275)
Diffstat (limited to 'src/parser/input.h')
-rw-r--r-- | src/parser/input.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parser/input.h b/src/parser/input.h index d4fdde1bd..6086ed1a5 100644 --- a/src/parser/input.h +++ b/src/parser/input.h @@ -54,7 +54,9 @@ struct ParseInput { std::optional<uint64_t> takeI64(); std::optional<uint32_t> takeU32(); std::optional<uint32_t> takeI32(); + std::optional<uint16_t> takeI16(); std::optional<uint8_t> takeU8(); + std::optional<uint8_t> takeI8(); std::optional<double> takeF64(); std::optional<float> takeF32(); std::optional<std::string> takeString(); |