Searched refs:EntryAI (Results 1 – 1 of 1) sorted by relevance
469 AllocaInst *EntryAI = dyn_cast<AllocaInst>(FirstInst); in visitAllocaInst() local470 if (!EntryAI || !EntryAI->getAllocatedType()->isSized() || in visitAllocaInst()471 DL.getTypeAllocSize(EntryAI->getAllocatedType()) in visitAllocaInst()480 const Align MaxAlign = std::max(EntryAI->getAlign(), AI.getAlign()); in visitAllocaInst()481 EntryAI->setAlignment(MaxAlign); in visitAllocaInst()482 if (AI.getType() != EntryAI->getType()) in visitAllocaInst()483 return new BitCastInst(EntryAI, AI.getType()); in visitAllocaInst()484 return replaceInstUsesWith(AI, EntryAI); in visitAllocaInst()