Home | History | Annotate | Download | only in IR

Lines Matching refs:FC

269     void visitFCmpInst(FCmpInst &FC);
1481 void Verifier::visitFCmpInst(FCmpInst &FC) {
1483 Type *Op0Ty = FC.getOperand(0)->getType();
1484 Type *Op1Ty = FC.getOperand(1)->getType();
1486 "Both operands to FCmp instruction are not of the same type!", &FC);
1489 "Invalid operand types for FCmp instruction", &FC);
1491 Assert1(FC.getPredicate() >= CmpInst::FIRST_FCMP_PREDICATE &&
1492 FC.getPredicate() <= CmpInst::LAST_FCMP_PREDICATE,
1493 "Invalid predicate in FCmp instruction!", &FC);
1495 visitInstruction(FC);