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

/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp897 void deleteDeadInstructions(SmallPtrSet<AllocaInst *, 4> &DeletedAllocas);
3343 void SROA::deleteDeadInstructions(SmallPtrSet<AllocaInst*, 4> &DeletedAllocas) { argument
3359 DeletedAllocas.insert(AI);
3492 SmallPtrSet<AllocaInst *, 4> DeletedAllocas; local
3497 deleteDeadInstructions(DeletedAllocas);
3501 if (!DeletedAllocas.empty()) {
3502 Worklist.remove_if(IsAllocaInSet(DeletedAllocas));
3503 PostPromotionWorklist.remove_if(IsAllocaInSet(DeletedAllocas));
3506 IsAllocaInSet(DeletedAllocas)),
3508 DeletedAllocas
[all...]

Completed in 33 milliseconds