Home | History | Annotate | Download | only in IR

Lines Matching refs:RI

307   void visitReturnInst(ReturnInst &RI);
1195 void Verifier::visitReturnInst(ReturnInst &RI) {
1196 Function *F = RI.getParent()->getParent();
1197 unsigned N = RI.getNumOperands();
1201 "return type!", &RI, F->getReturnType());
1203 Assert2(N == 1 && F->getReturnType() == RI.getOperand(0)->getType(),
1205 "type of return inst!", &RI, F->getReturnType());
1209 visitTerminatorInst(RI);