Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JIT: don't dead store OSR exposed locals #89867

Merged
merged 1 commit into from
Aug 10, 2023

Commits on Aug 2, 2023

  1. JIT: don't dead store OSR exposed locals

    Backport of dotnet#89743 to 7.0.
    
    The local var ref count for OSR locals can be misleading, since some
    of the appearances may be in the "tier0" parts of the methods and
    won't be visible once we trim the OSR method down to just the part
    we're going to compile.
    
    Fix by giving OSR-exposed locals an implicit ref count.
    
    Fixes dotnet#89666.
    AndyAyersMS committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    1dc85ba View commit details
    Browse the repository at this point in the history