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

/external/llvm/include/llvm/IR/
H A DInstructions.h3337 // ZExtInst Class
3341 class ZExtInst : public CastInst { class in inherits:CastInst
3343 /// \brief Clone an identical ZExtInst
3344 ZExtInst *clone_impl() const override;
3348 ZExtInst(
3356 ZExtInst(
/external/llvm/lib/IR/
H A DInstructions.cpp2381 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
2403 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
2909 ZExtInst::ZExtInst( function in class:ZExtInst
2915 ZExtInst::ZExtInst( function in class:ZExtInst
3629 ZExtInst *ZExtInst::clone_impl() const {
3630 return new ZExtInst(getOperand(0), getType());

Completed in 105 milliseconds