Home | History | Annotate | Download | only in src

Lines Matching defs:InstRet

701 class InstRet : public InstHighLevel {
702 InstRet() = delete;
703 InstRet(const InstRet &) = delete;
704 InstRet &operator=(const InstRet &) = delete;
707 static InstRet *create(Cfg *Func, Operand *RetValue = nullptr) {
708 return new (Func->allocate<InstRet>()) InstRet(Func, RetValue);
721 InstRet(Cfg *Func, Operand *RetValue);