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 114 SmallVector<Instruction*, 32> NowDeadInsts;
116 NowDeadInsts.push_back(I);
121 Instruction *DeadInst = NowDeadInsts.pop_back_val();
133 // If this operand just became dead, add it to the NowDeadInsts list.
138 NowDeadInsts.push_back(OpI);
144 } while (!NowDeadInsts.empty());
LoopIdiomRecognize.cpp 233 SmallVector<Instruction*, 32> NowDeadInsts;
235 NowDeadInsts.push_back(I);
239 Instruction *DeadInst = NowDeadInsts.pop_back_val();
249 // If this operand just became dead, add it to the NowDeadInsts list.
254 NowDeadInsts.push_back(OpI);
259 } while (!NowDeadInsts.empty());
    [all...]

Completed in 881 milliseconds