diff options
Diffstat (limited to 'test/Transforms/InstCombine/not-fcmp.ll')
-rw-r--r-- | test/Transforms/InstCombine/not-fcmp.ll | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/not-fcmp.ll b/test/Transforms/InstCombine/not-fcmp.ll new file mode 100644 index 0000000..ad01a6b --- /dev/null +++ b/test/Transforms/InstCombine/not-fcmp.ll @@ -0,0 +1,10 @@ +; RUN: opt < %s -instcombine -S | grep "fcmp uge" +; PR1570 + +define i1 @f(float %X, float %Y) { +entry: + %tmp3 = fcmp olt float %X, %Y ; <i1> [#uses=1] + %toBoolnot5 = xor i1 %tmp3, true ; <i1> [#uses=1] + ret i1 %toBoolnot5 +} + |