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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp140 SmallVector<Instruction*, 32> NowDeadInsts; local
142 NowDeadInsts.push_back(I);
151 Instruction *DeadInst = NowDeadInsts.pop_back_val();
171 // If this operand just became dead, add it to the NowDeadInsts list.
176 NowDeadInsts.push_back(OpI);
186 } while (!NowDeadInsts.empty());
1950 SmallVector<Instruction *, 32> NowDeadInsts; local
1951 NowDeadInsts.push_back(SI);
1954 while (!NowDeadInsts.empty()) {
1955 Instruction *DeadInst = NowDeadInsts
[all...]

Completed in 95 milliseconds