search for: addinsertaft

Displaying 3 results from an estimated 3 matches for "addinsertaft".

Did you mean: addinsertafter
2009 Jan 08
2
[LLVMdev] insertAfter method Patch
...rt. 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 available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090107/40cad26d/attachment.patch> -------------- next part -------------- A non-text attachment was scrubbed... Name: ScratchPass.cpp Type: text/x-c++src Size: 1552 byte...
2009 Jan 08
2
[LLVMdev] insertAfter method Patch
...s.uiuc.edu/mailman/listinfo/llvmdev > Thanks for spotting the problem. Looking at the code again, I made the same mistake in the comment in Instruction.h. Here is the patch with the corrected comments. Tom -------------- next part -------------- A non-text attachment was scrubbed... Name: AddInsertAfter.patch Type: text/x-patch Size: 1872 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090108/209a8a13/attachment.bin>
2009 Jan 08
0
[LLVMdev] insertAfter method Patch
Thomas B. Jablin wrote: > Hi, > I have added an insertAfter method to 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.