Searched refs:OldAttrList (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/VMCore/
H A DAttributes.cpp291 const SmallVector<AttributeWithIndex, 4> &OldAttrList = AttrList->Attrs; local
292 unsigned i = 0, e = OldAttrList.size();
294 for (; i != e && OldAttrList[i].Index < Idx; ++i)
295 NewAttrList.push_back(OldAttrList[i]);
298 if (i != e && OldAttrList[i].Index == Idx) {
299 Attrs |= OldAttrList[i].Attrs;
307 OldAttrList.begin()+i, OldAttrList.end());
327 const SmallVector<AttributeWithIndex, 4> &OldAttrList = AttrList->Attrs; local
328 unsigned i = 0, e = OldAttrList
[all...]

Completed in 180 milliseconds