Lines Matching refs:Ret
35 // * It is illegal to have a ret instruction that returns a value that does not
2717 // - The call must immediately precede a :ref:`ret <i_ret>` instruction,
2718 // or a pointer bitcast followed by a ret instruction.
2719 // - The ret instruction must return the (possibly bitcasted) value
2733 ReturnInst *Ret = dyn_cast_or_null<ReturnInst>(Next);
2734 Assert(Ret, "musttail call must be precede a ret with an optional bitcast",
2736 Assert(!Ret->getReturnValue() || Ret->getReturnValue() == RetVal,
2737 "musttail call result must be returned", Ret);