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

/external/llvm/include/llvm/
H A DInstructions.h3166 // FPExtInst Class
3170 class FPExtInst : public CastInst { class in inherits:CastInst
3172 /// @brief Clone an identical FPExtInst
3173 virtual FPExtInst *clone_impl() const;
3177 FPExtInst(
3185 FPExtInst(
3193 static inline bool classof(const FPExtInst *) { return true; }
/external/llvm/lib/VMCore/
H A DInstructions.cpp2257 case FPExt: return new FPExtInst (S, Ty, Name, InsertBefore);
2280 case FPExt: return new FPExtInst (S, Ty, Name, InsertAtEnd);
2711 FPExtInst::FPExtInst( function in class:FPExtInst
2717 FPExtInst::FPExtInst( function in class:FPExtInst
3392 FPExtInst *FPExtInst::clone_impl() const {
3393 return new FPExtInst(getOperand(0), getType());

Completed in 859 milliseconds