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
select
define i32 @test1(i1 %C) { br i1 %C, label %exit, label %body body: %A = select i1 %C, i32 10, i32 11 ret i32 %A exit: ret i32 10 }
Not sure how hard would it be to get this working, but this is a pattern that appears sorely often in LLVM. Here:
%A = select i1 %C, i32 10, i32 11
%C is clearly zero so the range of %A is [11;11].
[11;11]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Not sure how hard would it be to get this working, but this is a pattern that appears sorely often in LLVM. Here:
%C is clearly zero so the range of %A is
[11;11]
.The text was updated successfully, but these errors were encountered: