Searched defs:MCall (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/IR/
H A DInstructions.cpp423 CallInst *MCall = nullptr; local
426 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
427 Result = MCall;
430 Result = new BitCastInst(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
[all...]

Completed in 837 milliseconds