Add insertAfter. This should have accompanied previous check-in.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114481 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Devang Patel 2010-09-21 21:10:42 +00:00
parent 44cfe14445
commit 704b07613e

View File

@ -308,6 +308,9 @@ public:
template<typename IT>
void insert(iterator I, IT S, IT E) { Insts.insert(I, S, E); }
iterator insert(iterator I, MachineInstr *M) { return Insts.insert(I, M); }
iterator insertAfter(iterator I, MachineInstr *M) {
return Insts.insertAfter(I, M);
}
// erase - Remove the specified element or range from the instruction list.
// These functions delete any instructions removed.