diff options
Diffstat (limited to 'src/tools/fuzzing.h')
-rw-r--r-- | src/tools/fuzzing.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tools/fuzzing.h b/src/tools/fuzzing.h index 5529a14a8..830e204f8 100644 --- a/src/tools/fuzzing.h +++ b/src/tools/fuzzing.h @@ -109,6 +109,9 @@ private: std::vector<Type> loggableTypes; + // The heap types we can pick from to generate instructions. + std::vector<HeapType> interestingHeapTypes; + Index numAddedFunctions = 0; // RAII helper for managing the state used to create a single function. @@ -315,6 +318,7 @@ private: Type getStorableType(); Type getLoggableType(); bool isLoggableType(Type type); + Nullability getNullability(); Nullability getSubType(Nullability nullability); HeapType getSubType(HeapType type); Type getSubType(Type type); |