Mercurial > hg > CbC > CbC_llvm
diff test/Transforms/InstCombine/select-select.ll @ 77:54457678186b LLVM3.6
LLVM 3.6
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 08 Sep 2014 22:06:00 +0900 |
parents | |
children | afa8332a0e37 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/Transforms/InstCombine/select-select.ll Mon Sep 08 22:06:00 2014 +0900 @@ -0,0 +1,24 @@ +; RUN: opt -instcombine -S < %s | FileCheck %s + +; CHECK: @foo1 +define float @foo1(float %a) #0 { +; CHECK-NOT: xor + %b = fcmp ogt float %a, 0.000000e+00 + %c = select i1 %b, float %a, float 0.000000e+00 + %d = fcmp olt float %c, 1.000000e+00 + %f = select i1 %d, float %c, float 1.000000e+00 + ret float %f +} + +; CHECK: @foo2 +define float @foo2(float %a) #0 { +; CHECK-NOT: xor + %b = fcmp ogt float %a, 0.000000e+00 + %c = select i1 %b, float %a, float 0.000000e+00 + %d = fcmp olt float %c, 1.000000e+00 + %e = select i1 %b, float %a, float 0.000000e+00 + %f = select i1 %d, float %e, float 1.000000e+00 + ret float %f +} + +attributes #0 = { nounwind readnone ssp uwtable }