Displaying 1 result from an estimated 1 matches for "bcntr".
Did you mean:
bcnt
2008 Apr 23
0
[LLVMdev] newbie with pass registering Problem
...enomManager=new GenomManager();
blockNrs &bnrs=getAnalysis<blockNrs>();
GGenomManager->newFunction(F);
for(Function::iterator b = F.begin(), be = F.end(); b!=be; ++b)
{
//aktuelle Block Nummer wird geholt
blockCounter *bcntr = bnrs.lookup(b);
GGenomManager->newBlock(&(*b),*bcntr);
for(BasicBlock::iterator i = b->begin(), ie = b->end(); i!=ie; ++i)
{
GGenomManager->newInstruction(i);
}// end for BB
} //...