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 107 SmallVector<Instruction*, 32> NowDeadInsts;
109 NowDeadInsts.push_back(I);
114 Instruction *DeadInst = NowDeadInsts.pop_back_val();
126 // If this operand just became dead, add it to the NowDeadInsts list.
131 NowDeadInsts.push_back(OpI);
137 } 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 87 milliseconds