summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/tools/fuzzing/fuzzing.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/fuzzing/fuzzing.cpp b/src/tools/fuzzing/fuzzing.cpp
index 980427d81..3973176ed 100644
--- a/src/tools/fuzzing/fuzzing.cpp
+++ b/src/tools/fuzzing/fuzzing.cpp
@@ -3977,9 +3977,11 @@ HeapType TranslateToFuzzReader::getSubType(HeapType type) {
case HeapType::string:
return HeapType::string;
case HeapType::stringview_wtf8:
+ return HeapType::stringview_wtf8;
case HeapType::stringview_wtf16:
+ return HeapType::stringview_wtf16;
case HeapType::stringview_iter:
- WASM_UNREACHABLE("TODO: fuzz strings");
+ return HeapType::stringview_iter;
case HeapType::none:
case HeapType::noext:
case HeapType::nofunc: