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

[CIR][CIRGen] Create a new block after break and continue #611

Merged
merged 1 commit into from
Jun 6, 2024

Commits on May 16, 2024

  1. [CIR][CIRGen] Create a new block after break and continue

    Without this patch, CIR CodeGen continue to generate in the same block
    after cir.break and cir.continue, which would cause verification error
    because cir.break and cir.continue should appear at the end of blocks.
    
    This patch creates a new dangling block after generating cir.break and
    cir.continue to fix the issue.
    piggynl committed May 16, 2024
    Configuration menu
    Copy the full SHA
    5675572 View commit details
    Browse the repository at this point in the history