Searched refs:EntryAI (Results 1 - 1 of 1) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp370 AllocaInst *EntryAI = dyn_cast<AllocaInst>(FirstInst); local
371 if (!EntryAI || !EntryAI->getAllocatedType()->isSized() ||
372 DL.getTypeAllocSize(EntryAI->getAllocatedType()) != 0) {
379 if (EntryAI->getAlignment() == 0)
380 EntryAI->setAlignment(
381 MaybeAlign(DL.getPrefTypeAlignment(EntryAI->getAllocatedType())));
386 std::max(EntryAI->getAlignment(), AI.getAlignment()));
387 EntryAI->setAlignment(MaxAlign);
388 if (AI.getType() != EntryAI
[all...]

Completed in 71 milliseconds