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

  /external/llvm/lib/CodeGen/
LiveInterval.cpp 99 const_iterator StartPos) const {
103 const_iterator j = StartPos;
106 assert((StartPos->start <= i->start || StartPos == other.begin()) &&
107 StartPos != other.end() && "Bogus start position hint!");
113 ++StartPos;
114 if (StartPos != other.end() && StartPos->start <= i->start) {
115 assert(StartPos < other.end() && i < end());
  /external/llvm/lib/Transforms/ObjCARC/
DependencyAnalysis.cpp 199 /// Walk up the CFG from StartPos (which is in StartBB) and find local and
210 BasicBlock::iterator StartPos = StartInst;
213 Worklist.push_back(std::make_pair(StartBB, StartPos));

Completed in 49 milliseconds