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 110 SmallVector<Instruction*, 32> NowDeadInsts;
112 NowDeadInsts.push_back(I);
117 Instruction *DeadInst = NowDeadInsts.pop_back_val();
129 // If this operand just became dead, add it to the NowDeadInsts list.
134 NowDeadInsts.push_back(OpI);
140 } while (!NowDeadInsts.empty());
LoopIdiomRecognize.cpp 136 SmallVector<Instruction*, 32> NowDeadInsts;
138 NowDeadInsts.push_back(I);
142 Instruction *DeadInst = NowDeadInsts.pop_back_val();
152 // If this operand just became dead, add it to the NowDeadInsts list.
157 NowDeadInsts.push_back(OpI);
162 } while (!NowDeadInsts.empty());

Completed in 71 milliseconds