Lines Matching refs:FC
372 void visitFCmpInst(FCmpInst &FC);
2615 void Verifier::visitFCmpInst(FCmpInst &FC) {
2617 Type *Op0Ty = FC.getOperand(0)->getType();
2618 Type *Op1Ty = FC.getOperand(1)->getType();
2620 "Both operands to FCmp instruction are not of the same type!", &FC);
2623 "Invalid operand types for FCmp instruction", &FC);
2625 Assert(FC.getPredicate() >= CmpInst::FIRST_FCMP_PREDICATE &&
2626 FC.getPredicate() <= CmpInst::LAST_FCMP_PREDICATE,
2627 "Invalid predicate in FCmp instruction!", &FC);
2629 visitInstruction(FC);