Home | History | Annotate | Download | only in IR

Lines Matching refs:FC

293   void visitFCmpInst(FCmpInst &FC);
1810 void Verifier::visitFCmpInst(FCmpInst &FC) {
1812 Type *Op0Ty = FC.getOperand(0)->getType();
1813 Type *Op1Ty = FC.getOperand(1)->getType();
1815 "Both operands to FCmp instruction are not of the same type!", &FC);
1818 "Invalid operand types for FCmp instruction", &FC);
1820 Assert1(FC.getPredicate() >= CmpInst::FIRST_FCMP_PREDICATE &&
1821 FC.getPredicate() <= CmpInst::LAST_FCMP_PREDICATE,
1822 "Invalid predicate in FCmp instruction!", &FC);
1824 visitInstruction(FC);