diff options
author | Alon Zakai <azakai@google.com> | 2024-04-24 15:47:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-24 15:47:21 -0700 |
commit | 69c232ce43fce5c217331e8b07b60ac8ff3c5e78 (patch) | |
tree | fb7e09cd34b369ef0924b88681abe61b27742472 /src/wasm-interpreter.h | |
parent | 2e7e9ddcef219a2a1124dfb7f7009602c42084df (diff) | |
download | binaryen-69c232ce43fce5c217331e8b07b60ac8ff3c5e78.tar.gz binaryen-69c232ce43fce5c217331e8b07b60ac8ff3c5e78.tar.bz2 binaryen-69c232ce43fce5c217331e8b07b60ac8ff3c5e78.zip |
[Strings] Implement string.measure_wtf16 in interpreter (#6535)
Diffstat (limited to 'src/wasm-interpreter.h')
-rw-r--r-- | src/wasm-interpreter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h index 0afbaba94..b622087c8 100644 --- a/src/wasm-interpreter.h +++ b/src/wasm-interpreter.h @@ -1918,7 +1918,7 @@ public: Flow visitStringMeasure(StringMeasure* curr) { // For now we only support JS-style strings. - if (curr->op != StringMeasureWTF16View) { + if (curr->op != StringMeasureWTF16View && curr->op != StringMeasureWTF16) { return Flow(NONCONSTANT_FLOW); } |