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
and
Assuming you have:
define i1 @tinkywinky(i32 %a) { exit: %and = and i32 %a, 128 %cmp = icmp sle i32 %and, 128 ret i1 %cmp }
Both Cousot and CropDFS intra return:
Analysis for function: tinkywinky [-inf, +inf] %and = and i32 %a, 128
Ideally, this should return [0, 128], I think (maybe some care needs to be taken for undef, but I wouldn't worry too much).
[0, 128]
undef
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Assuming you have:
Both Cousot and CropDFS intra return:
Ideally, this should return
[0, 128]
, I think (maybe some care needs to be taken forundef
, but I wouldn't worry too much).The text was updated successfully, but these errors were encountered: