We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c24184 commit 81e6fa8Copy full SHA for 81e6fa8
1 file changed
src/tools/fuzzing/fuzzing.cpp
@@ -2584,13 +2584,13 @@ void TranslateToFuzzReader::mutateJSBoundary() {
2584
continue;
2585
}
2586
2587
+ auto* func = wasm.getFunction(name);
2588
auto oldResults = func->getResults();
2589
if (oldResults == Type::none) {
2590
2591
2592
2593
// Refine.
- auto* func = wasm.getFunction(name);
2594
auto lub = LUB::getResultsLUB(func, wasm);
2595
auto lubType = lub.getLUB();
2596
assert(oldResults.size() == lubType.size() || !lub.noted());
0 commit comments