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

/external/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp118 SmallVector<Instruction*, 32> NowDeadInsts; local
120 NowDeadInsts.push_back(I);
125 Instruction *DeadInst = NowDeadInsts.pop_back_val();
137 // If this operand just became dead, add it to the NowDeadInsts list.
142 NowDeadInsts.push_back(OpI);
148 } while (!NowDeadInsts.empty());
H A DLoopIdiomRecognize.cpp237 SmallVector<Instruction*, 32> NowDeadInsts; local
239 NowDeadInsts.push_back(I);
243 Instruction *DeadInst = NowDeadInsts.pop_back_val();
253 // If this operand just became dead, add it to the NowDeadInsts list.
258 NowDeadInsts.push_back(OpI);
263 } while (!NowDeadInsts.empty());

Completed in 52 milliseconds