reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/IR/Instructions.cpp
  578     MCall = CallInst::Create(MallocFunc, AllocSize, OpB, "malloccall",
  580     Result = MCall;
  583       Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
  585     MCall = CallInst::Create(MallocFunc, AllocSize, OpB, "malloccall");
  586     Result = MCall;
  588       InsertAtEnd->getInstList().push_back(MCall);
  590       Result = new BitCastInst(MCall, AllocPtrType, Name);
  593   MCall->setTailCall();
  595     MCall->setCallingConv(F->getCallingConv());
  599   assert(!MCall->getType()->isVoidTy() && "Malloc has void return type");