Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mark STORE_FAST_MAYBE_NULL as possibly NULLing a local
Given the current usage of STORE_FAST_MAYBE_NULL, it isn't possible to construct a repro where this is needed, because if the local was NULL coming into the comprehension it will already be marked as unsafe coming out of the comprehension (since the body of the comprehension is always a loop which may be skipped entirely). But in case this opcode is used in other contexts in future, it should mark the local unsafe.
- Loading branch information