Home | History | Annotate | Download | only in bugpoint

Lines Matching defs:Call

769   // the Test module to call into it.  Thus, we create a new function `main'

793 // Call the old main function and return its result
795 CallInst *call = CallInst::Create(oldMainProto, args, "", BB);
797 // If the type of old function wasn't void, return value of call
798 ReturnInst::Create(Safe->getContext(), call, BB);
803 // module. Instead, we use a JIT API call to dynamically resolve the
868 // Resolve the call to function F via the JIT API:
870 // call resolver(GetElementPtr...)
900 CallInst *Call = CallInst::Create(FuncPtr, Args,
902 ReturnInst::Create(F->getContext(),Call, DoCallBB);