Home | History | Annotate | Download | only in CodeGen

Lines Matching full:isnormal

527     // isnormal(x) --> x == x && fabsf(x) < infinity && fabsf(x) >= float_min
536 Value *IsNormal =
538 "isnormal");
540 V = Builder.CreateAnd(V, IsNormal, "and");
601 Value *IsNormal =
603 "isnormal");
605 Builder.CreateSelect(IsNormal, EmitScalarExpr(E->getArg(2)),