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

/external/llvm/include/llvm/IR/
H A DInstructions.h3373 // SExtInst Class
3377 class SExtInst : public CastInst { class in inherits:CastInst
3379 /// \brief Clone an identical SExtInst
3380 SExtInst *clone_impl() const override;
3384 SExtInst(
3392 SExtInst(
/external/llvm/lib/IR/
H A DInstructions.cpp2382 case SExt: return new SExtInst (S, Ty, Name, InsertBefore);
2404 case SExt: return new SExtInst (S, Ty, Name, InsertAtEnd);
2920 SExtInst::SExtInst( function in class:SExtInst
2926 SExtInst::SExtInst( function in class:SExtInst
3633 SExtInst *SExtInst::clone_impl() const {
3634 return new SExtInst(getOperand(0), getType());

Completed in 116 milliseconds