Searched defs:PtrToIntInst (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/IR/
H A DInstructions.h3665 // PtrToIntInst Class
3669 class PtrToIntInst : public CastInst { class in inherits:CastInst
3671 /// \brief Clone an identical PtrToIntInst
3672 PtrToIntInst *clone_impl() const override;
3676 PtrToIntInst(
3684 PtrToIntInst(
/external/llvm/lib/IR/
H A DInstructions.cpp2389 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
2411 case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
3004 PtrToIntInst::PtrToIntInst( function in class:PtrToIntInst
3010 PtrToIntInst::PtrToIntInst( function in class:PtrToIntInst
3661 PtrToIntInst *PtrToIntInst::clone_impl() const {
3662 return new PtrToIntInst(getOperand(0), getType());

Completed in 4768 milliseconds