Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Oper

1685     Value *Oper = Visit(E->getSubExpr());
1686 Value *Zero = llvm::Constant::getNullValue(Oper->getType());
1688 if (Oper->getType()->isFPOrFPVectorTy())
1689 Result = Builder.CreateFCmp(llvm::CmpInst::FCMP_OEQ, Oper, Zero, "cmp");
1691 Result = Builder.CreateICmp(llvm::CmpInst::ICMP_EQ, Oper, Zero, "cmp");