Home | History | Annotate | Download | only in llvm

Lines Matching refs:Ret

2237   // ReturnInst()                  - 'ret void' instruction
2238 // ReturnInst( null) - 'ret void' instruction
2239 // ReturnInst(Value* X) - 'ret X' instruction
2240 // ReturnInst( null, Inst *I) - 'ret void' instruction, insert before I
2241 // ReturnInst(Value* X, Inst *I) - 'ret X' instruction, insert before I
2242 // ReturnInst( null, BB *B) - 'ret void' instruction, insert @ end of B
2243 // ReturnInst(Value* X, BB *B) - 'ret X' instruction, insert @ end of B
2280 return (I->getOpcode() == Instruction::Ret);