Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
JIT: fix double reporting of some GC frame slots
If there is a gc struct local that is dependently promoted, the struct local may be untracked while the promoted gc fields of the struct are tracked. If so, the jit will double report the stack offset for the gc field, first as an untracked slot, and then as a tracked slot. Detect this case and report the slot as tracked only. Closes #71005.
- Loading branch information