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
Reproducer: https://alive2.llvm.org/ce/z/cmneUX
define half @test_fcmp_select_maxnum(half %x) { #0: %cmp2 = fcmp ogt half %x, 0x5bf8 %sel2 = select nnan ninf nsz i1 %cmp2, half %x, half 0x5bf8 ret half %sel2 } => define half @test_fcmp_select_maxnum(half %x) { #0: %sel2 = fmax ninf nsz half %x, 0x5bf8 ret half %sel2 } Transformation doesn't verify! ERROR: Target is more poisonous than source Example: half %x = #xfc00 (-oo) Source: i1 %cmp2 = #x0 (0) half %sel2 = #x5bf8 (255) Target: half %sel2 = poison Source value: #x5bf8 (255) Target value: poison Summary: 0 correct transformations 1 incorrect transformations 0 failed-to-prove transformations 0 Alive2 errors
The text was updated successfully, but these errors were encountered:
dtcxzyw
Successfully merging a pull request may close this issue.
Reproducer: https://alive2.llvm.org/ce/z/cmneUX
The text was updated successfully, but these errors were encountered: