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

Make the success arms of if lhs || rhs meet up in a separate block #121784

Merged
merged 1 commit into from
Mar 1, 2024

Commits on Feb 29, 2024

  1. Make the success arms of if lhs || rhs meet up in a separate block

    In the previous code, the success block of `lhs` would jump directly to the
    success block of `rhs`. However, `rhs_success_block` could already contain
    statements that are specific to the RHS, and the direct goto causes them to be
    executed in the LHS success path as well.
    
    This patch therefore creates a fresh block that the LHS and RHS success blocks
    can both jump to.
    Zalathar committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    a7832b1 View commit details
    Browse the repository at this point in the history