diff options
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/fuzzing.h | 7 | ||||
-rw-r--r-- | src/tools/fuzzing/fuzzing.cpp | 3 |
2 files changed, 1 insertions, 9 deletions
diff --git a/src/tools/fuzzing.h b/src/tools/fuzzing.h index e29a6ddaf..a40a76106 100644 --- a/src/tools/fuzzing.h +++ b/src/tools/fuzzing.h @@ -25,8 +25,6 @@ high chance for set at start of loop high chance of a tee in that case => loop var */ -// TODO Generate exception handling instructions - #include "ir/branch-utils.h" #include "ir/memory-utils.h" #include "ir/struct-utils.h" @@ -399,8 +397,3 @@ private: }; } // namespace wasm - -// XXX Switch class has a condition?! is it real? should the node type be the -// value type if it exists?! - -// TODO copy an existing function and replace just one node in it diff --git a/src/tools/fuzzing/fuzzing.cpp b/src/tools/fuzzing/fuzzing.cpp index 2e4d460f7..bdaf71e83 100644 --- a/src/tools/fuzzing/fuzzing.cpp +++ b/src/tools/fuzzing/fuzzing.cpp @@ -765,8 +765,7 @@ void TranslateToFuzzReader::recombine(Function* func) { while (1) { ret.push_back(Type(heapType, nullability)); - // TODO: handle basic supertypes too - auto super = heapType.getDeclaredSuperType(); + auto super = heapType.getSuperType(); if (!super) { break; } |