HomeSort by: relevance | last modified time | path
    Searched defs:ReturnInst (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instructions.h 2932 // ReturnInst Class
2939 class ReturnInst : public Instruction {
2940 ReturnInst(const ReturnInst &RI);
2943 // ReturnInst constructors:
2944 // ReturnInst() - 'ret void' instruction
2945 // ReturnInst( null) - 'ret void' instruction
2946 // ReturnInst(Value* X) - 'ret X' instruction
2947 // ReturnInst( null, Inst *I) - 'ret void' instruction, insert before I
2948 // ReturnInst(Value* X, Inst *I) - 'ret X' instruction, insert before
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instructions.cpp 960 // ReturnInst Implementation
963 ReturnInst::ReturnInst(const ReturnInst &RI)
965 OperandTraits<ReturnInst>::op_end(this) - RI.getNumOperands(),
972 ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore)
974 OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
980 ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd
    [all...]

Completed in 31 milliseconds