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

/external/llvm/include/llvm/
H A DInstructions.h3228 // SExtInst Class
3232 class SExtInst : public CastInst { class in inherits:CastInst
3234 /// @brief Clone an identical SExtInst
3235 virtual SExtInst *clone_impl() const;
3239 SExtInst(
3247 SExtInst(
3255 static inline bool classof(const SExtInst *) { return true; }
/external/llvm/lib/VMCore/
H A DInstructions.cpp2278 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
2299 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
2709 SExtInst::SExtInst( function in class:SExtInst
2715 SExtInst::SExtInst( function in class:SExtInst
3407 SExtInst *SExtInst::clone_impl() const {
3408 return new SExtInst(getOperand(0), getType());

Completed in 49 milliseconds