diff options
Diffstat (limited to 'src/tools/fuzzing/fuzzing.cpp')
-rw-r--r-- | src/tools/fuzzing/fuzzing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/fuzzing/fuzzing.cpp b/src/tools/fuzzing/fuzzing.cpp index c1625d726..701822452 100644 --- a/src/tools/fuzzing/fuzzing.cpp +++ b/src/tools/fuzzing/fuzzing.cpp @@ -2456,7 +2456,7 @@ Expression* TranslateToFuzzReader::makeBasicRef(Type type) { return builder.makeArrayNewFixed(trivialArray, {}); } case HeapType::exn: { - auto null = builder.makeRefNull(HeapType::ext); + auto null = builder.makeRefNull(HeapType::exn); if (!type.isNullable()) { assert(funcContext); return builder.makeRefAs(RefAsNonNull, null); |