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
X != Y
X | Y != 0
Proof: https://alive2.llvm.org/ce/z/cJ75Ya
define i1 @src(i8 %x, i8 %y) { entry: %cond = icmp ne i8 %x, %y br i1 %cond, label %if.then, label %if.else if.then: %or = or i8 %x, %y %cmp = icmp eq i8 %or, 0 ret i1 %cmp if.else: ret i1 false } define i1 @tgt(i8 %x, i8 %y) { entry: %cond = icmp ne i8 %x, %y br i1 %cond, label %if.then, label %if.else if.then: ret i1 false if.else: ret i1 false }
See also dtcxzyw/llvm-tools#32 and https://discourse.llvm.org/t/tuning-up-constraint-elimination/83213/5?u=dtcxzyw.
The text was updated successfully, but these errors were encountered:
dtcxzyw
Successfully merging a pull request may close this issue.
Proof: https://alive2.llvm.org/ce/z/cJ75Ya
See also dtcxzyw/llvm-tools#32 and https://discourse.llvm.org/t/tuning-up-constraint-elimination/83213/5?u=dtcxzyw.
The text was updated successfully, but these errors were encountered: