diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-10-14 18:44:08 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-10-14 18:44:08 +0000 |
commit | 7298805b2e389730f9c4600f26e563738c0b4735 (patch) | |
tree | 03eabb9447f61c1fc22cab69c0fc72371ae60b6f /test/Transforms | |
parent | f1f2cea57f291ae22df5ae0cd4856d3555c3ebac (diff) | |
download | external_llvm-7298805b2e389730f9c4600f26e563738c0b4735.zip external_llvm-7298805b2e389730f9c4600f26e563738c0b4735.tar.gz external_llvm-7298805b2e389730f9c4600f26e563738c0b4735.tar.bz2 |
Combine (fcmp cc0 x, y) | (fcmp cc1 x, y) into a single fcmp when possible.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57515 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms')
-rw-r--r-- | test/Transforms/InstCombine/or-fcmp.ll | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/or-fcmp.ll b/test/Transforms/InstCombine/or-fcmp.ll new file mode 100644 index 0000000..3833c6f --- /dev/null +++ b/test/Transforms/InstCombine/or-fcmp.ll @@ -0,0 +1,34 @@ +; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep fcmp | count 3 +; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep ret | grep 1 + +define zeroext i8 @t1(float %x, float %y) nounwind { + %a = fcmp ueq float %x, %y ; <i1> [#uses=1] + %b = fcmp uno float %x, %y ; <i1> [#uses=1] + %c = or i1 %a, %b + %retval = zext i1 %c to i8 + ret i8 %retval +} + +define zeroext i8 @t2(float %x, float %y) nounwind { + %a = fcmp olt float %x, %y ; <i1> [#uses=1] + %b = fcmp oeq float %x, %y ; <i1> [#uses=1] + %c = or i1 %a, %b + %retval = zext i1 %c to i8 + ret i8 %retval +} + +define zeroext i8 @t3(float %x, float %y) nounwind { + %a = fcmp ult float %x, %y ; <i1> [#uses=1] + %b = fcmp uge float %x, %y ; <i1> [#uses=1] + %c = or i1 %a, %b + %retval = zext i1 %c to i8 + ret i8 %retval +} + +define zeroext i8 @t4(float %x, float %y) nounwind { + %a = fcmp ult float %x, %y ; <i1> [#uses=1] + %b = fcmp ugt float %x, %y ; <i1> [#uses=1] + %c = or i1 %a, %b + %retval = zext i1 %c to i8 + ret i8 %retval +} |