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

/external/llvm/include/llvm/IR/
H A DInstructions.h3365 // SExtInst Class
3369 class SExtInst : public CastInst { class in inherits:CastInst
3371 /// \brief Clone an identical SExtInst
3372 virtual SExtInst *clone_impl() const;
3376 SExtInst(
3384 SExtInst(
/external/llvm/lib/IR/
H A DInstructions.cpp2332 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
2353 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
2818 SExtInst::SExtInst( function in class:SExtInst
2824 SExtInst::SExtInst( function in class:SExtInst
3540 SExtInst *SExtInst::clone_impl() const {
3541 return new SExtInst(getOperand(0), getType());

Completed in 461 milliseconds