Home | History | Annotate | Download | only in IR

Lines Matching refs:MCall

423   CallInst *MCall = nullptr;
426 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
427 Result = MCall;
430 MCall, AllocPtrType, Name, InsertBefore);
432 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall");
433 Result = MCall;
435 InsertAtEnd->getInstList().push_back(MCall);
437 Result = new BitCastInst(MCall, AllocPtrType, Name);
440 MCall->setTailCall();
442 MCall->setCallingConv(F->getCallingConv());
445 assert(!MCall->getType()->isVoidTy() && "Malloc has void return type");