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

/external/llvm/include/llvm/
H A DInstructions.h3357 // SExtInst Class
3361 class SExtInst : public CastInst { class in inherits:CastInst
3363 /// @brief Clone an identical SExtInst
3364 virtual SExtInst *clone_impl() const;
3368 SExtInst(
3376 SExtInst(
3384 static inline bool classof(const SExtInst *) { return true; }
/external/llvm/lib/VMCore/
H A DInstructions.cpp2284 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
2305 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
2715 SExtInst::SExtInst( function in class:SExtInst
2721 SExtInst::SExtInst( function in class:SExtInst
3437 SExtInst *SExtInst::clone_impl() const {
3438 return new SExtInst(getOperand(0), getType());

Completed in 226 milliseconds