We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Minimal example:
@main { num: int = const 12; ans: int = call @loop_with_early_ret num; print ans; } @loop_with_early_ret(n: int): int { f: bool = const false; .loop: br f .break .continue; .break: ret n; .continue: br f .loop .done; .done: ret n; }
RVSDG output looks like this:
Round trip is an error:
thread 'main' panicked at src/rvsdg/to_cfg.rs:285:46: index out of bounds: the len is 2 but the index is 2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Minimal example:
RVSDG output looks like this:
![test](https://private-user-images.githubusercontent.com/21298521/322173896-53050483-8056-4494-a7e8-510ffb87cb4f.svg?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkwMDY2NjgsIm5iZiI6MTczOTAwNjM2OCwicGF0aCI6Ii8yMTI5ODUyMS8zMjIxNzM4OTYtNTMwNTA0ODMtODA1Ni00NDk0LWE3ZTgtNTEwZmZiODdjYjRmLnN2Zz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMDglMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjA4VDA5MTkyOFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTQyNzQyMjRjOGEyZmMwNjBlZTUxN2FlZjg1ZTQ0NWFiNzc5NWE3ZjA0YTFiNzAyZmQyYzZmOWJhNmUxZGM2MTAmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.4wi5wV7dC6so2YfeM9pZ2NoiifhoYbqsvo6cnzPxzvk)
Round trip is an error:
The text was updated successfully, but these errors were encountered: