diff options
author | Alon Zakai <azakai@google.com> | 2022-07-08 11:42:55 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-08 11:42:55 -0700 |
commit | 75d059ad249b9dcedbaaf858747d60d299269d2c (patch) | |
tree | 43545e9c86b62081f6127c9aa3b479cb2921c60b /src/wasm-s-parser.h | |
parent | 838e8eed2cea3d7818b19620cdca732b8b05dfca (diff) | |
download | binaryen-75d059ad249b9dcedbaaf858747d60d299269d2c.tar.gz binaryen-75d059ad249b9dcedbaaf858747d60d299269d2c.tar.bz2 binaryen-75d059ad249b9dcedbaaf858747d60d299269d2c.zip |
[Strings] string.eq (#4781)
Diffstat (limited to 'src/wasm-s-parser.h')
-rw-r--r-- | src/wasm-s-parser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wasm-s-parser.h b/src/wasm-s-parser.h index 9eb4a2085..777d33e30 100644 --- a/src/wasm-s-parser.h +++ b/src/wasm-s-parser.h @@ -308,6 +308,7 @@ private: Expression* makeStringMeasure(Element& s, StringMeasureOp op); Expression* makeStringEncode(Element& s, StringEncodeOp op); Expression* makeStringConcat(Element& s); + Expression* makeStringEq(Element& s); // Helper functions Type parseOptionalResultType(Element& s, Index& i); |