search for: liitr

Displaying 1 result from an estimated 1 matches for "liitr".

Did you mean: iitr
2010 May 08
0
[LLVMdev] Regarding LLVM Compiler
...if the interval passed as a parameter is empty. You'll want to explicitly skip testing of empty intervals. They can just be treated as non-interfering.) To sum up, you probably want something like this: LiveIntervals *li_ = &getAnalysis<LiveIntervals>(); for (LiveIntervals::iterator liItr = li_->begin(), liEnd = li_->end(); liItr != liEnd; ++liItr) { LiveInterval *li = liItr->second; if (li->empty()) continue; for (LiveIntervals::iterator li2Itr = llvm::next(liItr); li2Itr != liEnd; ++liItr) { LiveInterval *li2 = li2Itr->second; if (li2->empty())...