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: handle case where we are cloning adjacent sibling loops #70874

Merged
merged 1 commit into from
Jun 21, 2022

Commits on Jun 18, 2022

  1. JIT: handle case where we are cloning adjacent sibling loops

    We can sometimes see adjacent sibling loops (where L1.bottom == L2.head)
    and if so, cloning L1 will repurpose L1.bottom and so leave L2 in
    an inconsistent state.
    
    Detect this case during optCanonicalizeLoop, and add an intermediary
    block to serve as L2's head.
    
    Fixes dotnet#70569.
    AndyAyersMS committed Jun 18, 2022
    Configuration menu
    Copy the full SHA
    cae78ae View commit details
    Browse the repository at this point in the history