Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Oper

1896     Value *Oper = Visit(E->getSubExpr());
1897 Value *Zero = llvm::Constant::getNullValue(Oper->getType());
1899 if (Oper->getType()->isFPOrFPVectorTy())
1900 Result = Builder.CreateFCmp(llvm::CmpInst::FCMP_OEQ, Oper, Zero, "cmp");
1902 Result = Builder.CreateICmp(llvm::CmpInst::ICMP_EQ, Oper, Zero, "cmp");