Home | History | Annotate | Download | only in docs

Lines Matching full:newinst

2397 Instruction *newInst = new Instruction(...);

2399 pb-&gt;getInstList().insert(pi, newInst); // <i>Inserts newInst before pi in pb</i>
2412 Instruction *newInst = new Instruction(...);
2414 pb-&gt;getInstList().push_back(newInst); // <i>Appends newInst to pb</i>
2423 Instruction *newInst = new Instruction(..., pb);
2441 Instruction *newInst = new Instruction(...);
2443 pi-&gt;getParent()-&gt;getInstList().insert(pi, newInst);
2460 Instruction* newInst = new Instruction(..., pi);