We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Copied from #37471
Name: range using high bits %masked = or i8 %arg, 192 %r = icmp ne i8 %masked, %arg => %r = icmp ult i8 %arg, 192
https://rise4fun.com/Alive/lv5
The text was updated successfully, but these errors were encountered:
Also %masked = or i8 %arg, 192 %r = icmp eq i8 %masked, %arg => %r = icmp uge i8 %arg, 192
Sorry, something went wrong.
[InstCombine] Add #38139 test coverage
264bcbe
Missing fold was fixed by 3cf54c5
[InstCombine] Add llvm#38139 test coverage
f7c6fe7
No branches or pull requests
Extended Description
Copied from #37471
Name: range using high bits
%masked = or i8 %arg, 192
%r = icmp ne i8 %masked, %arg
=>
%r = icmp ult i8 %arg, 192
https://rise4fun.com/Alive/lv5
The text was updated successfully, but these errors were encountered: