diff options
author | Alon Zakai <azakai@google.com> | 2023-10-17 10:12:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-17 17:12:02 +0000 |
commit | 2bf3caae764689c606ae38353b1bad5fe28bf5bb (patch) | |
tree | 7112801575e46132fdccad7bf120f5cafb9471da /src/tools/fuzzing.h | |
parent | b816ac563de6b1c53087796335fce593a96f569a (diff) | |
download | binaryen-2bf3caae764689c606ae38353b1bad5fe28bf5bb.tar.gz binaryen-2bf3caae764689c606ae38353b1bad5fe28bf5bb.tar.bz2 binaryen-2bf3caae764689c606ae38353b1bad5fe28bf5bb.zip |
Add getGeneralSuperType() that includes basic supers, and use in fuzzer (#6005)
With this, the fuzzer can replace e.g. an eq expression with a specific struct type,
because now it is away that struct types have eq as their ancestor.
Diffstat (limited to 'src/tools/fuzzing.h')
-rw-r--r-- | src/tools/fuzzing.h | 7 |
1 files changed, 0 insertions, 7 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 |