Displaying 2 results from an estimated 2 matches for "addinsertbefore".
2009 Jan 08
2
[LLVMdev] insertAfter method Patch
...the ilist and Instruction classes. The methods are implemented as efficiently as the currently existing insert and insertBefore methods. The insertAfter method was created to mirror a similar method in another compiler in order to ease an ongoing port. The patch, which is very small is included as AddInsertBefore.patch. Additionally, I wrote a small test pass which demonstrates the correctness of insertAfter and have attached it as ScratchPass.cpp. Thanks.
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: AddInsertAfter.patch
Type: text/x-diff
Size: 1874 bytes
Desc: not...
2009 Jan 08
0
[LLVMdev] insertAfter method Patch
...the ilist and Instruction classes. The methods are implemented as efficiently as the currently existing insert and insertBefore methods. The insertAfter method was created to mirror a similar method in another compiler in order to ease an ongoing port. The patch, which is very small is included as AddInsertBefore.patch. Additionally, I wrote a small test pass which demonstrates the correctness of insertAfter and have attached it as ScratchPass.cpp. Thanks.
> Tom
Small nitpick: in Instruction.cpp, the comment for insertAfter says
insertBefore and not insertAfter.
:)
-- John T.