Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:DestList

3691   SmallVector<BasicBlock*, 16> DestList;
3697 DestList.push_back(DestBB);
3702 DestList.push_back(DestBB);
3709 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
3710 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3711 IBI->addDestination(DestList[i]);