Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Oper

1787     Value *Oper = Visit(E->getSubExpr());
1788 Value *Zero = llvm::Constant::getNullValue(Oper->getType());
1790 if (Oper->getType()->isFPOrFPVectorTy())
1791 Result = Builder.CreateFCmp(llvm::CmpInst::FCMP_OEQ, Oper, Zero, "cmp");
1793 Result = Builder.CreateICmp(llvm::CmpInst::ICMP_EQ, Oper, Zero, "cmp");