Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Ret

52   Instruction *Ret = nullptr;
66 Ret = CastInst::Create(Op, V, Ty, "", &*IP);
67 Ret->takeName(CI);
68 CI->replaceAllUsesWith(Ret);
72 Ret = CI;
77 if (!Ret)
78 Ret = CastInst::Create(Op, V, Ty, V->getName(), &*IP);
83 assert(SE.DT.dominates(Ret, &*BIP));
85 rememberInstruction(Ret);
86 return Ret;