Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Oper

1696     Value *Oper = Visit(E->getSubExpr());
1697 Value *Zero = llvm::Constant::getNullValue(Oper->getType());
1699 if (Oper->getType()->isFPOrFPVectorTy())
1700 Result = Builder.CreateFCmp(llvm::CmpInst::FCMP_OEQ, Oper, Zero, "cmp");
1702 Result = Builder.CreateICmp(llvm::CmpInst::ICMP_EQ, Oper, Zero, "cmp");