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
(A ==/!= B) &/| (((cast)A) CMP C)
Example: https://godbolt.org/z/Pr8T7xsMz
bool f(int a) { bool t = a == 0; short t1 = a; bool t2 = t1 >= 3; return t & t2; } bool g(int b) { bool t = b == 3; short t1 = b; bool t2 = t1 >= 3; return t | t2; }
The example above is taken from the following: https://github.com/gcc-mirror/gcc/blob/master/gcc/testsuite/gcc.dg/tree-ssa/cmpbit-6.c https://github.com/gcc-mirror/gcc/blob/master/gcc/testsuite/gcc.dg/tree-ssa/cmpbit-7.c
The text was updated successfully, but these errors were encountered:
Alive2: https://alive2.llvm.org/ce/z/6EVKhN
Sorry, something went wrong.
isImpliedCondCommonOperandWithConstants
Should be fixed by #70335.
dtcxzyw
Successfully merging a pull request may close this issue.
Example:
https://godbolt.org/z/Pr8T7xsMz
The example above is taken from the following:
https://github.com/gcc-mirror/gcc/blob/master/gcc/testsuite/gcc.dg/tree-ssa/cmpbit-6.c
https://github.com/gcc-mirror/gcc/blob/master/gcc/testsuite/gcc.dg/tree-ssa/cmpbit-7.c
The text was updated successfully, but these errors were encountered: