diff options
Diffstat (limited to 'src/passes/RedundantSetElimination.cpp')
-rw-r--r-- | src/passes/RedundantSetElimination.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/passes/RedundantSetElimination.cpp b/src/passes/RedundantSetElimination.cpp index 8b0914ecf..ccf6e6ac2 100644 --- a/src/passes/RedundantSetElimination.cpp +++ b/src/passes/RedundantSetElimination.cpp @@ -184,14 +184,19 @@ struct RedundantSetElimination if (block.get() == entry) { // params are complex values we can't optimize; vars are zeros for (Index i = 0; i < numLocals; i++) { + auto type = func->getLocalType(i); if (func->isParam(i)) { #ifdef RSE_DEBUG std::cout << "new param value for " << i << '\n'; #endif start[i] = getUniqueValue(); + } else if (type.isRef() && !type.isNullable()) { +#ifdef RSE_DEBUG + std::cout << "new unique value for non-nullable " << i << '\n'; +#endif + start[i] = getUniqueValue(); } else { - start[i] = - getLiteralValue(Literal::makeZeros(func->getLocalType(i))); + start[i] = getLiteralValue(Literal::makeZeros(type)); } } } else { |