HomeSort by relevance Sort by last modified time
    Searched refs:NowDeadInsts (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 118 SmallVector<Instruction*, 32> NowDeadInsts;
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());
LoopIdiomRecognize.cpp 237 SmallVector<Instruction*, 32> NowDeadInsts;
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());
    [all...]

Completed in 327 milliseconds