Home | History | Annotate | Download | only in CodeGen

Lines Matching full:isnormal

781     // isnormal(x) --> x == x && fabsf(x) < infinity && fabsf(x) >= float_min
790 Value *IsNormal =
792 "isnormal");
794 V = Builder.CreateAnd(V, IsNormal, "and");
855 Value *IsNormal =
857 "isnormal");
859 Builder.CreateSelect(IsNormal, EmitScalarExpr(E->getArg(2)),