Home
last modified time | relevance | path

Searched refs:MCall (Results 1 – 1 of 1) sorted by relevance

/external/llvm/lib/IR/
DInstructions.cpp423 CallInst *MCall = NULL; in createMalloc() local
426 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore); in createMalloc()
427 Result = MCall; in createMalloc()
430 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore); in createMalloc()
432 MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall"); in createMalloc()
433 Result = MCall; in createMalloc()
435 InsertAtEnd->getInstList().push_back(MCall); in createMalloc()
437 Result = new BitCastInst(MCall, AllocPtrType, Name); in createMalloc()
440 MCall->setTailCall(); in createMalloc()
442 MCall->setCallingConv(F->getCallingConv()); in createMalloc()
[all …]