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

/external/llvm/include/llvm/
H A DInstructions.h3320 // ZExtInst Class
3324 class ZExtInst : public CastInst { class in inherits:CastInst
3326 /// @brief Clone an identical ZExtInst
3327 virtual ZExtInst *clone_impl() const;
3331 ZExtInst(
3339 ZExtInst(
3347 static inline bool classof(const ZExtInst *) { return true; }
/external/llvm/lib/VMCore/
H A DInstructions.cpp2283 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore);
2304 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd);
2704 ZExtInst::ZExtInst( function in class:ZExtInst
2710 ZExtInst::ZExtInst( function in class:ZExtInst
3433 ZExtInst *ZExtInst::clone_impl() const {
3434 return new ZExtInst(getOperand(0), getType());

Completed in 512 milliseconds